1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 03:35:09 +01:00
Files
OpenRCT2/.github/workflows/label-prs.yml
2026-01-13 09:52:34 +01:00

19 lines
507 B
YAML

# This workflow automatically labels new pull requests
# See labeler.yml for the label rules involved
name: Apply labels to pull request
on: pull_request_target
jobs:
labeler:
permissions:
contents: read
issues: write # automatically creates labels
pull-requests: write # assigning labels to PRs
runs-on: ubuntu-latest
if: github.repository == 'OpenRCT2/OpenRCT2'
steps:
- uses: actions/labeler@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}