Skip to content

Commit

Permalink
Fix incorrect call to copy_branch_protection
Browse files Browse the repository at this point in the history
I shouldn't have trusted Cursor's autocomplete suggestion…
  • Loading branch information
AliSoftware committed Feb 6, 2025
1 parent 3be67d7 commit 2c0f4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ platform :android do
trigger_release_build(branch_to_build: "release/#{new_version}")
create_backmerge_pr

copy_branch_protection(repository: GITHUB_REPO, branch: "release/#{new_version}", from_branch: DEFAULT_BRANCH)
copy_branch_protection(repository: GITHUB_REPO, from_branch: DEFAULT_BRANCH, to_branch: "release/#{new_version}")

begin
# Move PRs to next milestone
Expand Down

0 comments on commit 2c0f4e7

Please sign in to comment.