You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update cron-triggers.md
1. Deleted the 'Seconds' field from the 'Cron Expression Fields' table, as we support only five fields in the cron expression.
2. Moved 'Predefined Scheduling for Cron Jobs' and 'Fixed Interval Scheduling for Cron Jobs' to the 'Cron Triggers with Codefresh CLI' section (relevant only for legacy cron triggers), since our UI no longer supports them. Additionally, these schedules use six fields in the cron expression, which has been deprecated.
* Rename cron-timer-tab.png to cron-timer-tab-old.png
* Added new cron-time-tab.png
Updating the screenshot in the 'Create a Cron Trigger in UI' section (How-To, Step 5) to reflect the current support for five-field cron expressions in the UI. The previous screenshot incorrectly displays six fields.
* Delete images/pipeline/triggers/cron/cron-timer-tab-old.png
* Update cron-triggers.md
Removed 'Predefined Scheduling for Cron Jobs' and 'Fixed Interval Scheduling for Cron Jobs' sections
|@YEARLY (or @ANNUALLY) | Run once a year, midnight, Jan. 1st | 0 0 0 1 1 *|
190
-
|@MONTHLY| Run once a month, midnight, first of month | 0 0 0 1 **|
191
-
|@WEEKLY| Run once a week, midnight on Sunday | 0 0 0 ** 0|
192
-
|@DAILY (or @MIDNIGHT) | Run once a day, midnight | 0 0 0 ** *|
193
-
|@HOURLY| Run once an hour, beginning of hour | 0 0 ****|
194
-
195
-
### Fixed interval scheduling for Cron jobs
196
-
197
-
You can also schedule a job to execute at fixed intervals by adding `@every <interval>`. The <interval> is a string that represents the desired frequency.
198
-
For example, `@every 1h30m10s` would indicate a schedule that triggers every 1 hour, 30 minutes, 10 seconds.
199
-
200
-
>**NOTE**
201
-
The interval does not take the runtime of the job into account. For example, if a job takes three minutes to run, and it is scheduled to run every five minutes, it will have only two minutes of idle time between each run.
202
-
203
180
### Conditional triggers for Cron jobs
204
181
205
182
Take a look at our Knowledge Base how-to: [Skip pipeline step if triggered by Cron job]({{site.baseurl}}/docs/kb/articles/skip-test-if-pipeline-is-triggered-with-cron/).
0 commit comments