-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added action - to add tickets to the team's planning board (#387)
* Added action - ABTT * Resolved comments
- Loading branch information
Anatoly Bolshakov
authored
Aug 30, 2021
1 parent
2dbd6ff
commit d49e19c
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Auto Assign ABTT to Project Board | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
env: | ||
MY_GITHUB_TOKEN: ${{ secrets.ABTT_TOKEN }} | ||
|
||
jobs: | ||
assign_one_project: | ||
runs-on: ubuntu-latest | ||
name: Assign to ABTT Project | ||
steps: | ||
- name: "Add triage and area labels" | ||
uses: actions-ecosystem/action-add-labels@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
labels: | | ||
Area: tfx-cli | ||
triage | ||
- name: "Assign newly opened issues to project board" | ||
uses: srggrs/[email protected] | ||
with: | ||
project: 'https://github.com/orgs/microsoft/projects/48' | ||
column_name: 'Backlog' |