-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (29 loc) · 1.04 KB
/
syncBoard.yml
File metadata and controls
31 lines (29 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Sync issue to Azure DevOps work item
on:
issues:
types:
[opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned]
issue_comment:
types: [created, edited, deleted]
jobs:
sync-devops:
if: ${{ !github.event.issue.pull_request }}
runs-on: self-hosted
steps:
- uses: MTESSDev/github-actions-issue-to-work-item@custom-url
#uses: danhellem/github-actions-issue-to-work-item@master
env:
NODE_TLS_REJECT_UNAUTHORIZED: 0
ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}"
ado_url: "https://devops700.itp.extra/"
github_token: "${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}"
ado_organization: "700"
ado_project: "TPM"
ado_area_path: "TPM\\UTD"
#ado_iteration_path: "optional_iteration_path\\optional_iteration_path"
ado_wit: "Product Backlog Item"
ado_new_state: "New"
ado_active_state: "Active"
ado_close_state: "Done"
ado_bypassrules: true
log_level: 100