Skip to content

Commit d90e696

Browse files
committed
chore: Add autobug workflow
1 parent 52b914f commit d90e696

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/autobug.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)