mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 03:03:06 -05:00
21 lines
478 B
YAML
21 lines
478 B
YAML
name: GitHub - Label PRs
|
|
on:
|
|
- pull_request_target
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
triage:
|
|
permissions:
|
|
# for actions/labeler to determine modified files
|
|
contents: read
|
|
# for actions/labeler to add labels to PRs
|
|
pull-requests: write
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/labeler@0776a679364a9a16110aac8d0f40f5e11009e327 # v4
|
|
with:
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
|
sync-labels: true
|