chore: update label names in workflows (#1195)

This commit is contained in:
Pete Davison
2023-05-30 22:24:01 +01:00
committed by GitHub
parent e0d3e33c32
commit c0d3584626
3 changed files with 5 additions and 5 deletions

View File

@@ -19,11 +19,11 @@ jobs:
repo: context.repo.repo,
}
)
if (labels.find(label => label.name === 'needs triage')) {
if (labels.find(label => label.name === 'state: needs triage')) {
github.rest.issues.removeLabel({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
name: 'needs triage'
name: 'state: needs triage'
})
}