Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2021-06-21 17:22:50 +0300
committerMarcel Amirault <mamirault@gitlab.com>2021-06-21 17:22:50 +0300
commitacabee16168074d9a4e915c74cb41cb68f4faf82 (patch)
treed16a43fd3e6af0f5413085df45098247035d40b6 /Rakefile
parentb78e69185ec805331af57dff694a8f5e661ddb01 (diff)
Update runner default branch to main
The runner project changed the default branch to main, so we need to make sure we pull from main whenever we need to in the docs project
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index ed52278b..677bdb21 100644
--- a/Rakefile
+++ b/Rakefile
@@ -115,7 +115,7 @@ namespace :release do
ci_yaml_content = File.read(ci_yaml)
ci_yaml_content.gsub!("BRANCH_EE: 'master'", "BRANCH_EE: '#{version.tr('.', '-')}-stable-ee'")
ci_yaml_content.gsub!("BRANCH_OMNIBUS: 'master'", "BRANCH_OMNIBUS: '#{version.tr('.', '-')}-stable'")
- ci_yaml_content.gsub!("BRANCH_RUNNER: 'master'", "BRANCH_RUNNER: '#{version.tr('.', '-')}-stable'")
+ ci_yaml_content.gsub!("BRANCH_RUNNER: 'main'", "BRANCH_RUNNER: '#{version.tr('.', '-')}-stable'")
ci_yaml_content.gsub!("BRANCH_CHARTS: 'master'", "BRANCH_CHARTS: '#{chart_version(version).tr('.', '-')}-stable'")
File.open(ci_yaml, 'w') do |post|