Skip to content

Commit

Permalink
CI: don't run cron-fail-notify when the job just got canceled
Browse files Browse the repository at this point in the history
Doesn't seem right to prepare a PR in that case
  • Loading branch information
RalfJung committed Apr 23, 2024
1 parent 98f3480 commit d8e8b89
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 d8e8b89

Please sign in to comment.