-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2082 from cevich/add_cirrus_cron_retry_and_notifi…
…cations [CI:DOCS] Add cirrus-cron retry/monitor jobs
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
|
||
# See also: | ||
# https://github.com/containers/podman/blob/main/.github/workflows/check_cirrus_cron.yml | ||
|
||
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/6429752730058752 | ||
- 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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
|
||
# See also: https://github.com/containers/podman/blob/main/.github/workflows/rerun_cirrus_cron.yml | ||
|
||
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/6429752730058752 | ||
- cron: '01 01 * * 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_rerun: | ||
uses: containers/podman/.github/workflows/rerun_cirrus_cron.yml@main | ||
secrets: inherit |