Skip input step when triggering JDK matrix jobs (#15733)

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
This commit is contained in:
Dimitrios Liappis 2024-01-02 13:06:03 +02:00 committed by GitHub
parent 82ac474b13
commit a8b64a32e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ env:
steps:
- input: "Test Parameters"
if: build.source != "schedule"
if: build.source != "schedule" && build.source != "trigger_job"
fields:
- select: "Operating System"
key: "matrix-os"

View file

@ -6,7 +6,7 @@ env:
steps:
- input: "Test Parameters"
if: build.source != "schedule"
if: build.source != "schedule" && build.source != "trigger_job"
fields:
- select: "Operating System"
key: "matrix-os"