Skip to content

Daily CI

Daily CI #105

Workflow file for this run

# This workflow runs every weekday at 15:00 UTC (8AM PDT)
name: Daily CI
on:
schedule:
- cron: "00 15 * * 1-5"
permissions:
contents: read
jobs:
codebuild:

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

View workflow run for this annotation

GitHub Actions / Daily CI

Invalid workflow file

The workflow is not valid. .github/workflows/daily_ci.yml (Line: 12, Col: 3): Error calling workflow 'aws/aws-encryption-sdk-c/.github/workflows/codebuild.yml@8599fdfa1d1de821c9635da00191f92d96e39dbf'. The workflow is requesting 'id-token: write', but is only allowed 'id-token: none'.

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

View workflow run for this annotation

GitHub Actions / Daily CI

Invalid workflow file

The workflow is not valid. .github/workflows/daily_ci.yml (Line: 12, Col: 3): Error calling workflow 'aws/aws-encryption-sdk-c/.github/workflows/codebuild.yml@8599fdfa1d1de821c9635da00191f92d96e39dbf'. The workflow is requesting 'id-token: write', but is only allowed 'id-token: none'.
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/codebuild.yml
secrets: inherit
notify:
needs:
[
codebuild,
]
if: ${{ failure() }}
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 }}"
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_CI }}