-
Can anyone share an example of CIRRUS_CRON in a task? @fkorotkov Is it possible to expand the docs for CIRRUS_CRON with an example? |
Beta Was this translation helpful? Give feedback.
Answered by
fkorotkov
May 14, 2022
Replies: 1 comment
-
It seems the most common use case is to use it in task:
name: Cron Specific Checks
only_if: $CIRRUS_CRON != "" Also clarified a bit what's the value of More examples can be found in some of the public repositories that use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
5u623l20
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems the most common use case is to use it in
only_if
and other statements. For example, run some task only for cron invocations:Also clarified a bit what's the value of
CRON_NAME
variable in #1006More examples can be found in some of the public repositories that use
CIRRUS_CRON
.