Skip to content

Commit ee7630d

Browse files
committed
Fix condition
1 parent dc6d224 commit ee7630d

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci_common.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ jobs:
219219
- test-multiple-tags-job2
220220
- test-github-output
221221
runs-on: ubuntu-latest
222+
if: ${{ !cancelled() && !failure() }}
222223
steps:
223224
- name: Simple step
224225
run: |

.github/workflows/ci_main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
uses: ./.github/workflows/ci_common.yml
2626
with:
2727
release: true
28-
enableAzdo: ${{ inputs.enableAzdo == '' && true || inputs.enableAzdo }}
28+
enableAzdo: ${{ github.event_name != 'workflow_dispatch' || inputs.enableAzdo }}
2929
secrets:
3030
AZDO_TOKEN: ${{ secrets.AZDO_TOKEN }}

0 commit comments

Comments
 (0)