Skip to content

Commit

Permalink
ci: do not run report job when workflow is cancelled
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardosm committed Nov 4, 2024
1 parent e52257e commit 0485ef1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- package-crates
- build-dist-linux
- build-dist-windows
# 'always()' is needed because GitHub treats a skipped job (due to a failed
# dependency) a success.
if: always()
# '!cancelled()' is needed because GitHub treats a skipped job (due to a
# failed dependency) a success.
if: ${{ !cancelled() }}
runs-on: ubuntu-22.04
steps:
- name: Report status
Expand Down

0 comments on commit 0485ef1

Please sign in to comment.