We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e09524 commit f3d29cdCopy full SHA for f3d29cd
.github/workflows/ado_sync.yml
@@ -24,9 +24,9 @@ jobs:
24
ado_project: "${{ vars.ADO_PROJECT_NAME }}"
25
ado_area_path: "${{ vars.ADO_AREA_PATH }}"
26
ado_iteration_path: "${{ vars.ADO_ITERATION_PATH }}"
27
- ado_wit: "Product Backlog Item"
+ ado_wit: ${{ (contains(github.event.issue.title, 'FEATURE') || contains(github.event.issue.title, 'DOCS')) && 'Product Backlog Item' || 'Bug' }}
28
ado_new_state: "New"
29
- ado_active_state: "Active"
30
- ado_close_state: "Closed"
+ ado_active_state: ${{ (contains(github.event.issue.title, 'FEATURE') || contains(github.event.issue.title, 'DOCS')) && 'Active' || 'Committed' }}
+ ado_close_state: ${{ (contains(github.event.issue.title, 'FEATURE') || contains(github.event.issue.title, 'DOCS')) && 'Closed' || 'Done' }}
31
ado_bypassrules: true
32
log_level: 100
0 commit comments