Skip to content

Daily CI

Daily CI #416

Workflow file for this run

# 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
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
notify:
needs:
[
DAILY_CI
]
if: ${{ failure() && github.event_name == 'schedule'}}
uses: ./.github/workflows/slack-notification.yml

Check failure on line 25 in .github/workflows/daily_ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/daily_ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/daily_ci.yml" -> "./.github/workflows/slack-notification.yml" : failed to fetch workflow: workflow was not found.
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 }}