chore: add `pending triage` to blank issues (#28923)

This commit is contained in:
Daniel Roe 2024-09-10 21:16:21 +01:00 committed by GitHub
parent 476d9c4258
commit 622d10e210
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 27 additions and 0 deletions

27
.github/workflows/label-issue.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: chore
on:
issues:
types:
- opened
jobs:
add-pr-labels:
name: Add labels
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: github.repository == 'nuxt/nuxt'
steps:
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
# add 'pending triage' label if issue is created with no labels
if (context.payload.issue.labels.length === 0) {
github.rest.issues.addLabels({
issue_number: pullRequest.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['pending triage']
})
}