.github/workflows/check_cirrus_cron.yml #730
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
# Note: This only applies to the default branch. | |
schedule: | |
# N/B: This should correspond to a period slightly after | |
# the last job finishes running. See job defs. at: | |
# https://cirrus-ci.com/settings/repository/6680102350094336 | |
- cron: '03 03 * * 1-5' | |
# Debug: Allow triggering job manually in github-actions WebUI | |
workflow_dispatch: {} | |
jobs: | |
# Ref: https://docs.github.com/en/actions/using-workflows/reusing-workflows | |
call_cron_failures: | |
uses: containers/podman/.github/workflows/check_cirrus_cron.yml@main | |
secrets: inherit |