-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anatoly Bolshakov
authored
May 25, 2021
1 parent
02be360
commit 7492470
Showing
1 changed file
with
8 additions
and
4 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Auto Assign ABTT to Project Board | |
|
||
on: | ||
issues: | ||
types: [opened, labeled] | ||
types: [opened] | ||
env: | ||
MY_GITHUB_TOKEN: ${{ secrets.ABTT_TOKEN }} | ||
|
||
|
@@ -11,10 +11,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
name: Assign to ABTT Project | ||
steps: | ||
- name: "Add triage and area labels" | ||
uses: actions-ecosystem/action-add-labels@v1 | ||
with: | ||
labels: | | ||
"Area: AppStore" | ||
triage | ||
- name: "Assign issues with 'Area: ABTT' label to project board" | ||
uses: srggrs/[email protected] | ||
if: | | ||
contains(github.event.issue.labels.*.name, 'Area: ABTT') | ||
with: | ||
project: 'https://github.com/orgs/microsoft/projects/48' | ||
column_name: 'Ready for work (prioritised)' | ||
column_name: 'Backlog' |