Skip to content

Commit

Permalink
chore: add default cron pipeline to the list of pipelines
Browse files Browse the repository at this point in the history
Follow-up fix for #3177

Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
  • Loading branch information
smira authored and talos-bot committed Feb 18, 2021
1 parent ce6bfbd commit c2d1096
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ local cron_trigger(schedules) = {

local default_pipeline = Pipeline('default', default_steps) + default_trigger;

local default_cron_pipeline = Pipeline('default', default_steps) + cron_trigger(['thrice-daily', 'nightly']);
local default_cron_pipeline = Pipeline('cron-default', default_steps) + cron_trigger(['thrice-daily', 'nightly']);

// Full integration pipeline.

Expand Down Expand Up @@ -607,6 +607,7 @@ local notify_pipeline = Pipeline('notify', notify_steps, [default_pipeline, uplo

[
default_pipeline,
default_cron_pipeline,
upload_images_pipeline,
release_pipeline,
] + integration_pipelines + e2e_pipelines + conformance_pipelines + [
Expand Down

0 comments on commit c2d1096

Please sign in to comment.