File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ objects to get the associated project::
112
112
113
113
Reference: https://docs.gitlab.com/ee/ci/triggers/#trigger-token
114
114
115
- Pipeline schedule
116
- =================
115
+ Pipeline schedules
116
+ ==================
117
117
118
118
You can schedule pipeline runs using a cron-like syntax. Variables can be
119
119
associated with the scheduled pipelines.
@@ -128,7 +128,10 @@ Reference
128
128
+ :attr: `gitlab.v4.objects.Project.pipelineschedules `
129
129
+ :class: `gitlab.v4.objects.ProjectPipelineScheduleVariable `
130
130
+ :class: `gitlab.v4.objects.ProjectPipelineScheduleVariableManager `
131
- + :attr: `gitlab.v4.objects.Project.pipelineschedules `
131
+ + :attr: `gitlab.v4.objects.ProjectPipelineSchedule.variables `
132
+ + :class: `gitlab.v4.objects.ProjectPipelineSchedulePipeline `
133
+ + :class: `gitlab.v4.objects.ProjectPipelineSchedulePipelineManager `
134
+ + :attr: `gitlab.v4.objects.ProjectPipelineSchedule.pipelines `
132
135
133
136
* GitLab API: https://docs.gitlab.com/ce/api/pipeline_schedules.html
134
137
@@ -188,6 +191,9 @@ Delete a schedule variable::
188
191
189
192
var.delete()
190
193
194
+ List all pipelines triggered by a pipeline schedule::
195
+
196
+ pipelines = sched.pipelines.list()
191
197
192
198
Jobs
193
199
====
You can’t perform that action at this time.
0 commit comments