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 f69a1ef commit 503461eCopy full SHA for 503461e
src/Logic.hs
@@ -163,6 +163,12 @@ runAction :: ProjectConfiguration -> Action a -> Operation a
163
runAction config = foldFree $ \case
164
TryIntegrate message (pr, ref, sha) alwaysAddMergeCommit cont -> do
165
doGit $ ensureCloned config
166
+
167
+ -- Needed for backwards compatibility with existing repositories
168
+ -- as we now test at testing/<pr_id> instead of testing.
169
+ -- When no repositories have a testing branch, this can safely be removed.
170
+ _ <- doGit $ Git.deleteRemoteBranch $ Git.Branch $ Config.testBranch config
171
172
shaOrFailed <- doGit $ Git.tryIntegrate
173
message
174
ref
0 commit comments