Skip to content

Commit

Permalink
Add skip attribute to block and input (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngan authored Sep 26, 2023
1 parent 04ee8a4 commit 2f4f5dc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 4.2.5
* Add `skip` attributes to Block and Input steps.

### 4.2.4
* Add more group step attributes as listed in https://buildkite.com/docs/pipelines/group-step#group-step-attributes

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.4
4.2.5
1 change: 1 addition & 0 deletions lib/buildkite/pipelines/steps/block.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class Block < Abstract
attribute :block
attribute :key
attribute :prompt
attribute :skip
attribute :if, as: :condition
attribute :depends_on, append: true
attribute :allow_dependency_failure
Expand Down
1 change: 1 addition & 0 deletions lib/buildkite/pipelines/steps/input.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class Input < Abstract
attribute :input
attribute :key
attribute :prompt
attribute :skip
attribute :if, as: :condition
attribute :depends_on, append: true
attribute :allow_dependency_failure
Expand Down

0 comments on commit 2f4f5dc

Please sign in to comment.