Skip to content

Commit

Permalink
Update ado_sync.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DVAlexHiggs committed May 15, 2024
1 parent 3e09524 commit f3d29cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ado_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
ado_project: "${{ vars.ADO_PROJECT_NAME }}"
ado_area_path: "${{ vars.ADO_AREA_PATH }}"
ado_iteration_path: "${{ vars.ADO_ITERATION_PATH }}"
ado_wit: "Product Backlog Item"
ado_wit: ${{ (contains(github.event.issue.title, 'FEATURE') || contains(github.event.issue.title, 'DOCS')) && 'Product Backlog Item' || 'Bug' }}
ado_new_state: "New"
ado_active_state: "Active"
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' }}
ado_bypassrules: true
log_level: 100

0 comments on commit f3d29cd

Please sign in to comment.