Skip to content

Commit

Permalink
Merge pull request #1552 from microsoft/mochs-aa4am-1551
Browse files Browse the repository at this point in the history
Create assign-issue-to-project.yml
  • Loading branch information
mikefactorial authored Dec 1, 2021
2 parents 8008d92 + 4e61e90 commit 346c9a1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/assign-issue-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Auto Assign Issues to Projects

on:
issues:
types: [labeled]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
assign_to_project:
runs-on: ubuntu-latest
name: Assign topic to Project
steps:
- name: Assign issues with alm-accelerator label to AA4AM Project
uses: srggrs/[email protected]
if: contains(github.event.issue.labels.*.name, 'alm-accelerator')
with:
project: 'https://github.com/microsoft/coe-starter-kit/projects/3'
column_name: 'No Status'
- name: Assign issues with coe-starter-kit label to CoE Starter Kit Project
uses: srggrs/[email protected]
if: contains(github.event.issue.labels.*.name, 'coe-starter-kit')
with:
project: 'https://github.com/microsoft/coe-starter-kit/projects/7'
column_name: 'No Status'

0 comments on commit 346c9a1

Please sign in to comment.