We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ebc90f + c6d4b14 commit db15bd3Copy full SHA for db15bd3
1 file changed
.github/workflows/autoAssignABTT.yml
@@ -0,0 +1,24 @@
1
+name: Auto Assign ABTT to Project Board
2
+
3
+on:
4
+ issues:
5
+ types: [opened]
6
+env:
7
+ MY_GITHUB_TOKEN: ${{ secrets.ABTT_TOKEN }}
8
9
+jobs:
10
+ assign_one_project:
11
+ runs-on: ubuntu-latest
12
+ name: Assign to ABTT Project
13
+ steps:
14
+ - name: "Add triage and area labels"
15
+ uses: actions-ecosystem/action-add-labels@v1
16
+ with:
17
+ labels: |
18
+ "Area: NodeApi"
19
+ triage
20
+ - name: "Assign issues with 'Area: ABTT' label to project board"
21
+ uses: srggrs/assign-one-project-github-action@1.2.0
22
23
+ project: 'https://github.com/orgs/microsoft/projects/48'
24
+ column_name: 'Backlog'
0 commit comments