2021-01-30 05:41:31 +01:00
|
|
|
name: "Label PR"
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request_target:
|
2021-04-02 22:06:00 +02:00
|
|
|
types: [edited, opened, synchronize, reopened]
|
2021-01-30 05:41:31 +01:00
|
|
|
|
2022-03-19 19:43:22 +01:00
|
|
|
# WARNING:
|
|
|
|
# When extending this action, be aware that $GITHUB_TOKEN allows some write
|
|
|
|
# access to the GitHub API. This means that it should not evaluate user input in
|
|
|
|
# a way that allows code injection.
|
|
|
|
|
2021-04-24 19:05:17 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
|
|
|
|
2021-01-30 05:41:31 +01:00
|
|
|
jobs:
|
|
|
|
labels:
|
2024-08-01 05:28:40 +02:00
|
|
|
name: label-pr
|
2021-01-30 05:41:31 +01:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-21 02:28:04 +01:00
|
|
|
if: "github.repository_owner == 'NixOS' && !contains(github.event.pull_request.title, '[skip treewide]')"
|
2021-01-30 05:41:31 +01:00
|
|
|
steps:
|
2023-12-11 12:31:56 +01:00
|
|
|
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
|
2021-01-30 05:41:31 +01:00
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
sync-labels: true
|