diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-12 08:05:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 08:05:55 -0400 |
commit | b8693f97d3abd15e8d0502bc82b85286d5d3535e (patch) | |
tree | 93a70b899770224171365b6205302b503234c6fd /.cirrus.yml | |
parent | 0ebd2882f48155daf7b4cc8acbe53a570ac1aceb (diff) | |
parent | 61cf2228826aab06c3179c83ebc96b58996b133f (diff) | |
download | podman-b8693f97d3abd15e8d0502bc82b85286d5d3535e.tar.gz podman-b8693f97d3abd15e8d0502bc82b85286d5d3535e.tar.bz2 podman-b8693f97d3abd15e8d0502bc82b85286d5d3535e.zip |
Merge pull request #13828 from cevich/fix_cron_check
[CI:BUILD] Cirrus: Fix unsupported cirrus-cron build status
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 480dcb21e..c984c8859 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -776,8 +776,8 @@ image_build_task: &image-build test_image_build_task: <<: *image-build - # Allow this to run inside a PR - only_if: $CI == $CI + # Allow this to run inside a PR w/ [CI:BUILD] + only_if: $CIRRUS_PR != '' && $CIRRUS_CHANGE_TITLE !=~ '.*CI:DOCS.*' # This takes a LONG time, only run when requested. N/B: Any task # made to depend on this one will block FOREVER unless triggered. trigger_type: manual |