diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-07-12 14:12:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 14:12:55 -0400 |
commit | 4458d2230e31c963e740a78878d593cfe6e2f0a5 (patch) | |
tree | ea5068bc4f9e6eec2cb51b16073ec2f9833ce9e9 /.github/workflows/check_cirrus_cron.yml | |
parent | 561ef855706e9276cc66d4718db96389f3f32735 (diff) | |
parent | fe044d51eaceddbef1d575b54ceea4abb29c76a0 (diff) | |
download | podman-4458d2230e31c963e740a78878d593cfe6e2f0a5.tar.gz podman-4458d2230e31c963e740a78878d593cfe6e2f0a5.tar.bz2 podman-4458d2230e31c963e740a78878d593cfe6e2f0a5.zip |
Merge pull request #10849 from cevich/fix_cron_mail
[CI:DOCS] Fix cirrus-cron failure notification GH workflow
Diffstat (limited to '.github/workflows/check_cirrus_cron.yml')
-rw-r--r-- | .github/workflows/check_cirrus_cron.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/check_cirrus_cron.yml b/.github/workflows/check_cirrus_cron.yml index d869576fd..65c483c96 100644 --- a/.github/workflows/check_cirrus_cron.yml +++ b/.github/workflows/check_cirrus_cron.yml @@ -6,10 +6,12 @@ name: check_cirrus_cron on: - # Note: This only applies to the master branch. + # Note: This only applies to the main branch. schedule: - # Assume cirrus cron jobs runs at least once per day - - cron: '59 23 * * *' + # 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/6707778565701632 + - cron: '59 23 * * 1-5' # Debug: Allow triggering job manually in github-actions WebUI workflow_dispatch: {} @@ -30,7 +32,6 @@ jobs: steps: - uses: actions/checkout@v2 with: - ref: master persist-credentials: false - name: Get failed cron names and Build IDs |