We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc6d224 commit ee7630dCopy full SHA for ee7630d
2 files changed
.github/workflows/ci_common.yml
@@ -219,6 +219,7 @@ jobs:
219
- test-multiple-tags-job2
220
- test-github-output
221
runs-on: ubuntu-latest
222
+ if: ${{ !cancelled() && !failure() }}
223
steps:
224
- name: Simple step
225
run: |
.github/workflows/ci_main.yml
@@ -25,6 +25,6 @@ jobs:
25
uses: ./.github/workflows/ci_common.yml
26
with:
27
release: true
28
- enableAzdo: ${{ inputs.enableAzdo == '' && true || inputs.enableAzdo }}
+ enableAzdo: ${{ github.event_name != 'workflow_dispatch' || inputs.enableAzdo }}
29
secrets:
30
AZDO_TOKEN: ${{ secrets.AZDO_TOKEN }}
0 commit comments