Joscha Feth
Joscha Feth
See https://buildkite.com/docs/pipelines/notifications
See https://buildkite.com/docs/pipelines/input-step
See https://buildkite.com/changelog/76-conditional-expressions-for-pipeline-steps
e.g.: ``` if (Math.random() < 0.5) { pipeline.add(conditionalA) } if (pipeline.hasSteps()) { pipeline.add(conditionalB) } ``` Right now this is not possible with `buildkite-graph` alone, as conditional steps are still steps....
``` stepB.skip(true).dependsOn(stepA) ``` should produce ``` stepA stepB ``` NOT ``` stepA wait stepB ```
 Currently there is no way to find out which builds are blocking a step in a specific concurrency group (https://buildkite.com/docs/builds/controlling-concurrency). Would be great if there was a visual...
Any chance to get an option `cancelable: true|false`, disabling the "Cancel" button in the web UI?
When I have a pipeline that looks like this: ``` Pipeline X: * A -> * B (sync trigger) -> * C Pipeline Y: `- D -> E (fails) ```...
Sometimes I know the slug of a pipeline but not their "real" name. Would be great if the filter on buildkite could match slugs as well as names: 
Similar to: ``` - trigger: "data-generator" label: ":package: Generate data" ``` which would trigger a new synchronous build of the `data-generator` pipeline, I'd like to mark an already running build...