We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0785178 commit bf8a12fCopy full SHA for bf8a12f
1 file changed
.github/workflows/daily_ci.yml
@@ -1,12 +1,15 @@
1
# This workflow runs every weekday at 15:00 UTC (8AM PDT)
2
name: Daily CI
3
permissions:
4
+ id-token: write
5
contents: read
6
7
on:
8
schedule:
9
- cron: "00 15 * * 1-5"
-
10
+ pull_request:
11
+ paths:
12
+ .github/workflows/daily_ci.yml
13
jobs:
14
daily-ci-go-v3-test:
15
uses: ./.github/workflows/ci_test_go_v3.yml
@@ -27,7 +30,7 @@ jobs:
27
30
daily-ci-go-v4-test,
28
31
daily-ci-go-migration-examples-test,
29
32
]
- if: ${{ failure() }}
33
+ if: ${{ failure() && github.event_name == 'schedule' }}
34
uses: aws/aws-cryptographic-material-providers-library/.github/workflows/slack-notification.yml@main
35
with:
36
message: "Daily CI failed on `${{ github.repository }}`. View run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
0 commit comments