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 17, 2024
1 parent b77569e commit 92a5f99
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 @@ -18,9 +18,9 @@ jobs:
- build-dist-linux
- build-dist-windows
- build-dist-book
# '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 92a5f99

Please sign in to comment.