summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/labeler.yml
blob: a53fdb3e96cb0a9cf1fd4e3a0caf503fd41823ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Labeler labels incoming pull requests.
name: "Labeler"
on:
- pull_request

jobs:
  label:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/labeler@v2
      if: github.base_ref == null
      with:
        repo-token: "${{ secrets.GITHUB_TOKEN }}"