File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ WORKSPACE_PATH = File.join(PROJECT_ROOT_FOLDER, 'WooCommerce.xcworkspace')
2929FIREBASE_APP_ID = '1:124902176124:ios:02259de1e7c42b291620f9'
3030FIREBASE_TESTERS_GROUP = 'woocommerce-ios---prototype-builds'
3131
32+ # Buildkite sets this env var to the PR number if on a PR, but to 'false' (and not nil) if not on a PR
33+ pull_request_number = ENV [ 'BUILDKITE_PULL_REQUEST' ] &.then { |n | n == 'false' ? nil : Integer ( n ) }
34+
3235BUILDKITE_RELEASE_PIPELINE = 'release-builds.yml'
3336IOS_LOCALES = %w[ ar-SA de-DE en-US es-ES fr-FR he id it ja ko nl-NL pt-BR ru sv tr zh-Hans zh-Hant ] . freeze
3437SIMULATOR_VERSION = '18.5' # For screenshots
@@ -1526,9 +1529,6 @@ TEST_ANALYTICS_ENVIRONMENT = %w[
15261529# Release Management Utils
15271530# -----------------------------------------------------------------------------------
15281531
1529- # Buildkite sets this env var to the PR number if on a PR, but to 'false' (and not nil) if not on a PR
1530- pull_request_number = ENV [ 'BUILDKITE_PULL_REQUEST' ] &.then { |n | n == 'false' ? nil : Integer ( n ) }
1531-
15321532def create_backmerge_pr
15331533 version = release_version_current
15341534
You can’t perform that action at this time.
0 commit comments