We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59bab13 commit 6971228Copy full SHA for 6971228
.github/workflows/auto-add-issues.yml
@@ -0,0 +1,25 @@
1
+name: Label new issues as needs-triage and add to CodeFlare Sprint Board
2
+on:
3
+ issues:
4
+ types:
5
+ - opened
6
+jobs:
7
+ add_label:
8
+ name: Add needs-triage label to new issues
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ issues: write
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - run: gh issue edit ${{ github.event.issue.number }} --add-label "triage/needs-triage"
15
+ env:
16
+ GH_TOKEN: ${{ github.token }}
17
+
18
+ add-to-project:
19
+ name: Add issue to project
20
21
22
+ - uses: actions/[email protected]
23
+ with:
24
+ project-url: https://github.com/orgs/project-codeflare/projects/8
25
+ github-token: ${{ secrets.CODEFLARE_MACHINE_ACCOUNT_TOKEN }}
0 commit comments