@@ -22,6 +22,7 @@ func NewCmdBuildNew(f *factory.Factory) *cobra.Command {
22
22
var pipeline string
23
23
var confirmed bool
24
24
var web bool
25
+ var ignoreBranchFilters bool
25
26
var env []string
26
27
envMap := make (map [string ]string )
27
28
var envFile string
@@ -83,7 +84,7 @@ func NewCmdBuildNew(f *factory.Factory) *cobra.Command {
83
84
}
84
85
}
85
86
}
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 )
87
88
} else {
88
89
return nil
89
90
}
@@ -98,13 +99,14 @@ func NewCmdBuildNew(f *factory.Factory) *cobra.Command {
98
99
"If omitted, it will be resolved using the current directory." ,
99
100
)
100
101
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" )
101
104
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." )
103
105
cmd .Flags ().SortFlags = false
104
106
return & cmd
105
107
}
106
108
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 {
108
110
var err error
109
111
var build * buildkite.Build
110
112
spinErr := spinner .New ().
@@ -120,10 +122,11 @@ func newBuild(org string, pipeline string, f *factory.Factory, message string, c
120
122
}
121
123
122
124
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 ,
127
130
}
128
131
129
132
build , _ , err = f .RestAPIClient .Builds .Create (org , pipeline , & newBuild )
0 commit comments