Skip to content

Commit c6d4b14

Browse files
author
Anatolii Bolshakov (Akvelon INC)
committed
Added auto assign action
1 parent 5ebc90f commit c6d4b14

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
23+
project: 'https://github.com/orgs/microsoft/projects/48'
24+
column_name: 'Backlog'

0 commit comments

Comments
 (0)