Skip to content

Commit 4112d81

Browse files
authored
Add workflow to sync GitHub issue and AzDO Bug (#204)
1 parent 60ba1ae commit 4112d81

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Sync issue to Azure DevOps work item
2+
3+
on:
4+
issues:
5+
types:
6+
[opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned]
7+
8+
jobs:
9+
alert:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: danhellem/github-actions-issue-to-work-item@v2.1
13+
env:
14+
ado_token: "${{ secrets.AZDO_Work_Item_Token }}"
15+
github_token: "${{ secrets.GH_REPO_TOKEN }}"
16+
ado_organization: "ni"
17+
ado_project: "DevCentral"
18+
ado_area_path: "DevCentral\\Product RnD\\PlatformSW\\Test System SW\\CBS\\Test Automation Frameworks"
19+
ado_wit: "Bug"
20+
ado_new_state: "New"
21+
ado_active_state: "Active"
22+
ado_close_state: "Closed"
23+
ado_bypassrules: true
24+
log_level: 100

0 commit comments

Comments
 (0)