Skip to content

Commit

Permalink
Auto merge of #3505 - RalfJung:ci, r=RalfJung
Browse files Browse the repository at this point in the history
CI: don't run cron-fail-notify when the job just got canceled

Doesn't seem right to prepare a PR in that case
  • Loading branch information
bors committed Apr 24, 2024
2 parents e6914bb + d8e8b89 commit 0c1edc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
name: cronjob failure notification
runs-on: ubuntu-latest
needs: [build, style]
if: github.event_name == 'schedule' && (failure() || cancelled())
if: github.event_name == 'schedule' && failure()
steps:
# Send a Zulip notification
- name: Install zulip-send
Expand Down

0 comments on commit 0c1edc4

Please sign in to comment.