Update azuresync.yml

[skip ci]
pull/263/head
Qstick 3 years ago committed by GitHub
parent 000590bcf7
commit 7414a2f690
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: danhellem/github-actions-issue-to-work-item@master
if: ${{ github.event.label.name == 'Type: Bug' }}
if: ${{ contains(github.event.issue.labels.*.name, 'Bug') == true }}
env:
ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}"
github_token: "${{ github.token }}"
@ -24,7 +24,7 @@ jobs:
ado_bypassrules: true
log_level: 100
- uses: danhellem/github-actions-issue-to-work-item@master
if: ${{ github.event.label.name != 'Type: Bug' }}
if: ${{ contains(github.event.issue.labels.*.name, 'Bug') == false }}
env:
ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}"
github_token: "${{ github.token }}"

Loading…
Cancel
Save