From 519717a554d9c45c584c0de0dd2ef45f914a6e5e Mon Sep 17 00:00:00 2001 From: Alexander Mattoni <5110855+mattoni@users.noreply.github.com> Date: Mon, 3 Feb 2025 09:51:55 -0800 Subject: [PATCH] Add missing advanced property to pipeline trigger task --- .../taskActions/TriggerPipelineAction.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/components/schemas/pipelines/taskActions/TriggerPipelineAction.yml b/components/schemas/pipelines/taskActions/TriggerPipelineAction.yml index 98066c66..8e576804 100644 --- a/components/schemas/pipelines/taskActions/TriggerPipelineAction.yml +++ b/components/schemas/pipelines/taskActions/TriggerPipelineAction.yml @@ -16,3 +16,18 @@ properties: description: A map of variables to pass into the pipeline when it runs. additionalProperties: type: string + advanced: + type: object + properties: + sub_queue: + description: Sub queue allows multiple concurrent pipeline runs. + type: + - string + - "null" + skip_locks: + description: | + To enable skip locks, pass the current UNIX timestamp. Must be accurate within 10 minutes of the current UTC time. + This will skip lock checks when running a pipeline - the user takes all risk of ensuring two pipeline runs won't make conflicting changes. + type: + - integer + - "null"