Skip to content
Merged
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
@@ -1,12 +1,15 @@
# This workflow runs every weekday at 15:00 UTC (8AM PDT)
name: Daily CI
permissions:
id-token: write
contents: read

on:
schedule:
- cron: "00 15 * * 1-5"

pull_request:
paths:
.github/workflows/daily_ci.yml
Comment on lines +10 to +12

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is great

jobs:
daily-ci-go-v3-test:
uses: ./.github/workflows/ci_test_go_v3.yml
Expand All @@ -27,7 +30,7 @@ jobs:
daily-ci-go-v4-test,
daily-ci-go-migration-examples-test,
]
if: ${{ failure() }}
if: ${{ failure() && github.event_name == 'schedule' }}
uses: aws/aws-cryptographic-material-providers-library/.github/workflows/slack-notification.yml@main
with:
message: "Daily CI failed on `${{ github.repository }}`. View run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
Expand Down
Loading