Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/daily_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ name: Daily CI
on:
schedule:
- cron: "00 15 * * 1-5"

pull_request:
paths:
.github/workflows/daily_ci.yml

jobs:
getVersions:
# Don't run the cron builds on forks
Expand Down Expand Up @@ -86,7 +89,7 @@ jobs:
daily-interop-test,
daily-fuzz-interop-test,
]
if: ${{ failure() }}
if: ${{ failure() && github.event_name == 'schedule' }}
uses: ./.github/workflows/slack-notification.yml
with:
message: "Daily CI failed on `${{ github.repository }}`. View run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
Expand Down
Loading