File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
lib/fastlane/plugin/wpmreleasetoolkit/actions/common Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,11 @@ def self.run(params)
13
13
branch : params [ :branch ] ,
14
14
commit : params [ :commit ] ,
15
15
env : params [ :environment ] . merge ( pipeline_name ) ,
16
- message : params [ :message ]
16
+ message : params [ :message ] ,
17
+ # Buildkite will not trigger a build if the GitHub activity for that branch is turned off
18
+ # We want API triggers to work regardless of the GitHub activity settings, so this option is necessary
19
+ # https://forum.buildkite.community/t/request-build-error-branches-have-been-disabled-for-this-pipeline/1463/2
20
+ ignore_pipeline_branch_filters : true
17
21
} . compact # remove entries with `nil` values from the Hash, if any
18
22
19
23
client = Buildkit . new ( token : params [ :buildkite_token ] )
You can’t perform that action at this time.
0 commit comments