Skip to content

Commit 80141e2

Browse files
authored
Allow branch filters to be ignored (#379)
1 parent 0585748 commit 80141e2

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

pkg/cmd/build/new.go

+10-7
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ func NewCmdBuildNew(f *factory.Factory) *cobra.Command {
2222
var pipeline string
2323
var confirmed bool
2424
var web bool
25+
var ignoreBranchFilters bool
2526
var env []string
2627
envMap := make(map[string]string)
2728
var envFile string
@@ -83,7 +84,7 @@ func NewCmdBuildNew(f *factory.Factory) *cobra.Command {
8384
}
8485
}
8586
}
86-
return newBuild(pipeline.Org, pipeline.Name, f, message, commit, branch, web, envMap)
87+
return newBuild(pipeline.Org, pipeline.Name, f, message, commit, branch, web, envMap, ignoreBranchFilters)
8788
} else {
8889
return nil
8990
}
@@ -98,13 +99,14 @@ func NewCmdBuildNew(f *factory.Factory) *cobra.Command {
9899
"If omitted, it will be resolved using the current directory.",
99100
)
100101
cmd.Flags().StringArrayVarP(&env, "env", "e", []string{}, "Set environment variables for the build")
102+
cmd.Flags().BoolVarP(&ignoreBranchFilters, "ignore-branch-filters", "i", false, "Ignore branch filters for the pipeline")
103+
cmd.Flags().BoolVarP(&confirmed, "yes", "y", false, "Skip the confirmation prompt. Useful if being used in automation/CI")
101104
cmd.Flags().StringVarP(&envFile, "envFile", "f", "", "Set the environment variables for the build via an environment file")
102-
cmd.Flags().BoolVarP(&confirmed, "yes", "y", false, "Skip the confirmation prompt. Useful if being used in automation/CI.")
103105
cmd.Flags().SortFlags = false
104106
return &cmd
105107
}
106108

107-
func newBuild(org string, pipeline string, f *factory.Factory, message string, commit string, branch string, web bool, env map[string]string) error {
109+
func newBuild(org string, pipeline string, f *factory.Factory, message string, commit string, branch string, web bool, env map[string]string, ignoreBranchFilters bool) error {
108110
var err error
109111
var build *buildkite.Build
110112
spinErr := spinner.New().
@@ -120,10 +122,11 @@ func newBuild(org string, pipeline string, f *factory.Factory, message string, c
120122
}
121123

122124
newBuild := buildkite.CreateBuild{
123-
Message: message,
124-
Commit: commit,
125-
Branch: branch,
126-
Env: env,
125+
Message: message,
126+
Commit: commit,
127+
Branch: branch,
128+
Env: env,
129+
IgnorePipelineBranchFilters: ignoreBranchFilters,
127130
}
128131

129132
build, _, err = f.RestAPIClient.Builds.Create(org, pipeline, &newBuild)

0 commit comments

Comments
 (0)