We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b674665 commit b0a15cdCopy full SHA for b0a15cd
.github/workflows/triage-labelled.yml
@@ -29,6 +29,23 @@ jobs:
29
labels: ['Z-Labs']
30
})
31
32
+ apply_Help-Wanted_label:
33
+ name: Add "Help Wanted" label to all "good first issue" and Hacktoberfest
34
+ runs-on: ubuntu-latest
35
+ if: >
36
+ contains(github.event.issue.labels.*.name, 'good first issue') ||
37
+ contains(github.event.issue.labels.*.name, 'Hacktoberfest')
38
+ steps:
39
+ - uses: actions/github-script@v5
40
+ with:
41
+ script: |
42
+ github.rest.issues.addLabels({
43
+ issue_number: context.issue.number,
44
+ owner: context.repo.owner,
45
+ repo: context.repo.repo,
46
+ labels: ['Help Wanted']
47
+ })
48
+
49
move_needs_info_issues:
50
name: X-Needs-Info issues to Need info column on triage board
51
runs-on: ubuntu-latest
0 commit comments