Skip to content

chore: fix daily ci permissions #95

chore: fix daily ci permissions

chore: fix daily ci permissions #95

Workflow file for this run

# This workflow runs every weekday at 15:00 UTC (8AM PDT)
name: Daily CI
on:
pull_request:
paths:
- ".github/workflows/daily_ci.yml"
schedule:
- cron: "00 15 * * 1-5"
permissions:
contents: read
id-token: write
jobs:
static-analysis:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Static Analysis
uses: ./.github/workflows/ci_static-analysis.yaml
tests:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Run Tests
uses: ./.github/workflows/ci_tests.yaml
install-tests:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Installation Tests
uses: ./.github/workflows/install.yaml
integ-tests:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Integ Tests
uses: ./.github/workflows/python-integration.yml
examples:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Example Tests
uses: ./.github/workflows/python-examples.yml