Mirror for Friday Night Funkin

[GITHUB] Add `status: pending triage` to all PRs (#4035)

* Add `status: pending triage` to all PRs

* Update label-pull-request.yml

* now size and pr labels can be updated every commit!

* remove this

* move the pending triage thing to a new workflow

* Rename label-pr-on-create.yml to label-pull-request-on-create.yml

* fix the identation on this

* almost forgot to remove this

---------

Co-authored-by: Abnormal <86753001+AbnormalPoof@users.noreply.github.com>

authored by

Hundrec
Abnormal
and committed by
GitHub
47e320e9 0c06ba94

+19
+19
.github/workflows/label-pull-request-on-create.yml
··· 1 + name: "Pull Request Labeler 2 (Runs on PR creation)" 2 + on: 3 + pull_request_target: 4 + types: 5 + - opened 6 + 7 + jobs: 8 + # Apply `status: pending triage` to newly created pull requests 9 + apply-pending-triage: 10 + permissions: 11 + contents: read 12 + pull-requests: write 13 + runs-on: ubuntu-latest 14 + steps: 15 + - name: Apply "status pending triage" to new pull requests 16 + uses: actions-ecosystem/action-add-labels@v1 17 + with: 18 + token: ${{ secrets.GITHUB_TOKEN }} 19 + labels: "status: pending triage"