We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52b914f + d90e696 commit 20fd21aCopy full SHA for 20fd21a
.github/workflows/autobug.yaml
@@ -0,0 +1,22 @@
1
+name: Auto Assign Issues to Triage column in Sprint Planning Project Board
2
+
3
+on:
4
+ issues:
5
+ types: [opened]
6
7
+permissions: # added using https://github.com/step-security/secure-workflows
8
+ contents: read
9
10
+jobs:
11
+ issue_opened:
12
+ name: issue_opened
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: 'Move issue to "Triage"'
16
+ uses: leonsteinhaeuser/project-beta-automations@d1c1261558118c0876fdb2b57a649303925e5a70 # v2.1.0
17
+ with:
18
+ gh_token: ${{ secrets.MY_GITHUB_TOKEN }}
19
+ organization: atsign-foundation
20
+ project_id: 8
21
+ resource_node_id: ${{ github.event.issue.node_id }}
22
+ status_value: "Triage"
0 commit comments