blob: d23c4d403f5a1edd3bd1c000c08776a57200a5c2 [file] [log] [blame]
Philip H6d192a42023-08-19 14:30:47 +02001# This workflow will triage pull requests and apply a label based on the
2# paths that are modified in the pull request.
3#
4# To use this workflow, you will need to set up a .github/labeler.yml
5# file with configuration. For more information, see:
6# https://github.com/actions/labeler
7
8name: Labeler
9on: [pull_request_target]
10
11jobs:
12 label:
13
14 runs-on: ubuntu-latest
15 permissions:
16 contents: read
17 pull-requests: write
18
19 steps:
dependabot[bot]c1c3b832023-12-12 16:51:32 +010020 - uses: actions/labeler@v5
Philip H6d192a42023-08-19 14:30:47 +020021 with:
22 repo-token: "${{ secrets.GITHUB_TOKEN }}"