Skip to content

Commit

Permalink
Updated auto assign action (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatoly Bolshakov authored May 25, 2021
1 parent 02be360 commit 7492470
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/autoAssignABTT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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'

0 comments on commit 7492470

Please sign in to comment.