Skip to content

Commit 89b3a9d

Browse files
authored
Setup new action to create ADO items from github issues
1 parent 1413594 commit 89b3a9d

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Sync Issue to Azure DevOps work item
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
jobs:
8+
alert:
9+
runs-on: ubuntu-latest
10+
name: Testing workflow
11+
steps:
12+
- uses: champnic/github-actions-issue-to-work-item@users/champnic/master
13+
env:
14+
github_token: "${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}"
15+
ado_token: '${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}'
16+
ado_organization: 'microsoft'
17+
ado_project: 'Edge'
18+
ado_area_path: 'Edge\Dev Experience\WebView'
19+
ado_tags: 'WV2_GitHub'
20+
ado_bypassrules: false
21+
ado_set_labels: false
22+
create_on_tagging: true

0 commit comments

Comments
 (0)