Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ff6b2307
Commit
ff6b2307
authored
Oct 19, 2021
by
Harsh Chouraria
Committed by
Marcel Amirault
Oct 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CRON examples to pipeline schedules
parent
328e1a6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
doc/ci/pipelines/schedules.md
doc/ci/pipelines/schedules.md
+6
-4
No files found.
doc/ci/pipelines/schedules.md
View file @
ff6b2307
...
@@ -12,14 +12,16 @@ Pipelines are normally run based on certain conditions being met. For example, w
...
@@ -12,14 +12,16 @@ Pipelines are normally run based on certain conditions being met. For example, w
Pipeline schedules can be used to also run
[
pipelines
](
index.md
)
at specific intervals. For example:
Pipeline schedules can be used to also run
[
pipelines
](
index.md
)
at specific intervals. For example:
-
Every month on the 22nd for a certain branch.
-
Every month on the 22nd (cron example:
`0 0 22 * *`
) for a certain branch.
-
Once every day.
-
Every month on the 2nd Monday (cron example:
`0 0 * * 1#2`
).
-
Every other Sunday at 0900 hours (cron example:
`0 9 * * sun%2`
).
-
Once every day (cron example:
`0 0 * * *`
).
Schedule timing is configured with cron notation, parsed by
[
Fugit
](
https://github.com/floraison/fugit
)
.
In addition to using the GitLab UI, pipeline schedules can be maintained using the
In addition to using the GitLab UI, pipeline schedules can be maintained using the
[
Pipeline schedules API
](
../../api/pipeline_schedules.md
)
.
[
Pipeline schedules API
](
../../api/pipeline_schedules.md
)
.
Schedule timing is configured with cron notation, parsed by
[
Fugit
](
https://github.com/floraison/fugit
)
.
## Prerequisites
## Prerequisites
In order for a scheduled pipeline to be created successfully:
In order for a scheduled pipeline to be created successfully:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment