From 120b18b9f7fb96963e7e5b41c72bc3ca55f5a982 Mon Sep 17 00:00:00 2001 From: Ngan Pham Date: Tue, 5 Nov 2024 13:59:20 -0800 Subject: [PATCH] Add cancel_on_build_failing attribute to command step (#122) --- VERSION | 2 +- lib/buildkite/pipelines/steps/command.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index c412a4e..5c517bf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.14.0 +4.15.0 diff --git a/lib/buildkite/pipelines/steps/command.rb b/lib/buildkite/pipelines/steps/command.rb index fe11aeb..d4d8030 100644 --- a/lib/buildkite/pipelines/steps/command.rb +++ b/lib/buildkite/pipelines/steps/command.rb @@ -25,6 +25,7 @@ class Command < Abstract attribute :timeout_in_minutes attribute :plugins, append: true attribute :priority + attribute :cancel_on_build_failing end end end