File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
lib/fastlane/plugin/wpmreleasetoolkit/actions/common Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 21
21
- Add "Mobile Secrets" to ` configure_update ` current branch message to clarify which repo it's referring to. [ #455 ]
22
22
- ` buildkite_trigger_build ` now prints the web URL of the newly scheduled build, to allow you to easily open it via cmd-click. [ #460 ]
23
23
- Add the branch information to the 'This is not a release branch' error that's thrown from complete code freeze lane. [ #461 ]
24
+ - Adds ` ignore_pipeline_branch_filters=true ` parameter to the API call triggering a Buildkite build [ #468 ]
24
25
25
26
## 7.0.0
26
27
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