Skip to content

Commit

Permalink
include skip_on_delete in steps (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisghill authored Oct 28, 2024
1 parent 605f92c commit c832621
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/bundle/bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ const (
)

type Step struct {
Path string `json:"path" yaml:"path"`
Provisioner string `json:"provisioner" yaml:"provisioner"`
Path string `json:"path" yaml:"path"`
Provisioner string `json:"provisioner" yaml:"provisioner"`
SkipOnDelete bool `json:"skip_on_delete,omitempty" yaml:"skip_on_delete,omitempty"`
}

type Bundle struct {
Expand Down

0 comments on commit c832621

Please sign in to comment.