Skip to content

Commit 4779aa6

Browse files
committed
Allow multiple dev prs at once
1 parent f83b63e commit 4779aa6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,8 @@ def force_update(branch, custom_pr_comment, skip_confirmation=false, opts={})
578578
end
579579

580580
def update_files_in_repos(purpose, suffix='', opts={})
581-
branch_name = "update-#{purpose.gsub ' ', '-'}-#{ENV.fetch('BRANCH_DATE',Date.today.iso8601)}-for-#{BASE_BRANCH}"
581+
suffix = [BASE_BRANCH, ENV['BRANCH_SUFFIX']].join('-')
582+
branch_name = "update-#{purpose.gsub ' ', '-'}-#{ENV.fetch('BRANCH_DATE',Date.today.iso8601)}-for-#{suffix}"
582583

583584
each_project_with_common_build(opts) do |proj|
584585
assert_clean_git_status(proj)

0 commit comments

Comments
 (0)