mirror of
https://github.com/elastic/logstash.git
synced 2025-04-25 07:07:54 -04:00
PR#15729 missed the input step. As a result when the job is triggered
the steps are executed, but the pause icon still shows in the job
requiring manual unblock[^1]
This commit also skips the input step when the job is triggered from
the scheduler pipeline.
[^1] https://buildkite.com/elastic/logstash-linux-jdk-matrix-pipeline/builds/86
(cherry picked from commit a8b64a32e9
)
Co-authored-by: Dimitrios Liappis <dimitrios.liappis@gmail.com>
This commit is contained in:
parent
5871b600ec
commit
c557a9b7eb
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ env:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- input: "Test Parameters"
|
- input: "Test Parameters"
|
||||||
if: build.source != "schedule"
|
if: build.source != "schedule" && build.source != "trigger_job"
|
||||||
fields:
|
fields:
|
||||||
- select: "Operating System"
|
- select: "Operating System"
|
||||||
key: "matrix-os"
|
key: "matrix-os"
|
||||||
|
|
|
@ -6,7 +6,7 @@ env:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- input: "Test Parameters"
|
- input: "Test Parameters"
|
||||||
if: build.source != "schedule"
|
if: build.source != "schedule" && build.source != "trigger_job"
|
||||||
fields:
|
fields:
|
||||||
- select: "Operating System"
|
- select: "Operating System"
|
||||||
key: "matrix-os"
|
key: "matrix-os"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue