From 07b99881dfa6efa9665245647460e99846ccd341 Mon Sep 17 00:00:00 2001 From: Christopher Zorn Date: Wed, 8 Apr 2020 17:02:29 -0700 Subject: feat: add play command to project pipeline schedules fix: remove version from setup feat: add pipeline schedule play error exception docs: add documentation for pipeline schedule play --- docs/gl_objects/pipelines_and_jobs.rst | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docs') diff --git a/docs/gl_objects/pipelines_and_jobs.rst b/docs/gl_objects/pipelines_and_jobs.rst index 30b45f2..c79d19f 100644 --- a/docs/gl_objects/pipelines_and_jobs.rst +++ b/docs/gl_objects/pipelines_and_jobs.rst @@ -155,6 +155,11 @@ Update a schedule:: sched.cron = '1 2 * * *' sched.save() +Trigger a pipeline schedule immediately:: + + sched = projects.pipelineschedules.get(schedule_id) + sched.play() + Delete a schedule:: sched.delete() -- cgit v1.2.1