Skip to content
Merged
Changes from 1 commit
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
17 changes: 15 additions & 2 deletions .github/workflows/daily_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,22 @@
on:
schedule:
- cron: "00 15 * * 1-5"

pull_request:
paths:
.github/workflows/daily_ci.yml
jobs:
DAILY_CI:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/ci.yml
uses: ./.github/workflows/ci.yml
notify:
needs:
[
DAILY_CI
]
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 }}"
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_CI }}
Comment thread
rishav-karanjit marked this conversation as resolved.
Fixed