-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add script for CIFeatureFlags and add schedule #11297
Conversation
include: | ||
- main | ||
always: true # run the pipeline even if there are no code changes | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah interesting. It already has an existing trigger so I assumed it was used.
@@ -31,6 +31,20 @@ schedules: | |||
- main | |||
always: true # run the pipeline even if there are no code changes | |||
|
|||
- cron: '0 */24 * * *' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The cron constraints on hour look to be '0–23' (wikipedia), so I think the */24 is the equivalent of '0' for the hour position.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*/24
is run a job every 24 hours, but we could specify the time here instead.
No description provided.