summaryrefslogtreecommitdiffstats
path: root/.github/workflows/labeler.yml
blob: 3a68bd23a5a2b401a5295cdf4e7deb45b3a4dff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
# Handles labelling of PR's.
name: Pull Request Labeler
on:
  pull_request:
    types:
      - opened
      - synchronized
      - reopened
      - ready_for_review
jobs:
  labeler:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/labeler@v2
        with:
          repo-token: "${{ secrets.NETDATABOT_TOKEN }}"