Joscha Feth

Results 68 issues of 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 ```

![image 1](https://user-images.githubusercontent.com/188038/36179773-cf9122f6-1171-11e8-9beb-87589f96cc6c.png) 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: ![Canva](https://user-images.githubusercontent.com/188038/56337197-6321a600-61e7-11e9-809e-b2c29cde93a1.png)

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...