File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1- # Configuration for Label Commenter - https://github.com/peaceiris/actions- label-commenter
1+ # Configuration for Label Commenter - ./.github/ label-commenter-config.yml
22name : Label Commenter
33
44on :
1616 if : github.repository_owner == 'seleniumhq'
1717 runs-on : ubuntu-latest
1818 steps :
19- - uses : actions/checkout@v4
19+ - name : Checkout repo to get config file
20+ uses : actions/checkout@v4
2021 - name : Label Commenter
2122 uses : peaceiris/actions-label-commenter@v1
23+ with :
24+ # The individual PAT is needed so commenter can auto-executes on PRs from Forks
25+ # It expires 4/1/2026
26+ github_token : ${{ secrets.LABEL_COMMENTER_PAT }}
Original file line number Diff line number Diff line change 1+ # Configuration for Label Generation - ./.github/pr-labeler-config.yml
12name : Label pull requests based on file paths
23
34on :
1415 steps :
1516 - name : Checkout repository
1617 uses : actions/checkout@v4
17- - uses : actions/labeler@v5
18+ - name : Auto label Pull Requests
19+ uses : actions/labeler@v5
1820 with :
19- repo-token : ${{ secrets.GITHUB_TOKEN }}
21+ # The individual PAT is needed so labeler auto-executes this workflow
22+ # It expires 4/1/2026
23+ repo-token : ${{ secrets.PR_LABELER_PAT }}
2024 configuration-path : .github/pr-labeler-config.yml
You can’t perform that action at this time.
0 commit comments