summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/labeler.yml
blob: 3a19065e1e1fef3973a6b9e0527ea2527e0d4335 (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 }}"