We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 493f534 commit 0ad97feCopy full SHA for 0ad97fe
fastlane/Fastfile
@@ -116,6 +116,19 @@ lane :merge_release_to_main do
116
"https://github.com/#{github_repo}/actions/workflows/publish-release.yml")
117
end
118
119
+lane :merge_main_to_develop do
120
+ if is_ci
121
+ sh('git reset --hard')
122
+ else
123
+ ensure_git_status_clean
124
+ end
125
+
126
+ sh('git checkout main && git pull')
127
+ sh('git checkout develop && git pull')
128
+ sh('git merge main')
129
+ sh('git push')
130
+end
131
132
private_lane :appstore_api_key do
133
@appstore_api_key ||= app_store_connect_api_key(
134
key_id: 'MT3PRT8TB7',
0 commit comments