Skip to content
Closed
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion .github/workflows/daily_ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# This workflow runs every weekday at 16:00 UTC (9AM PDT)
name: Daily CI

permissions:
contents: read
id-token: write

on:
schedule:
- cron: "00 16 * * 1-5"
pull_request:
paths: .github/workflows/daily_ci.yml

jobs:
getVersion:
Expand Down Expand Up @@ -88,7 +94,7 @@ jobs:
daily-ci-net-test-vectors,
daily-ci-net-examples,
]
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
4 changes: 4 additions & 0 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# This workflow runs for every pull request
name: PR CI

permissions:
contents: read
id-token: write

on:
pull_request:

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
branches:
- main

permissions:
contents: read
id-token: write

jobs:
getVersion:
uses: ./.github/workflows/dafny_version.yml
Expand Down
Loading