Skip to content
Snippets Groups Projects
Unverified Commit 642deb0b authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix(automerge): don’t exit early if automerging pr comment (#4105)

Closes #4052
parent 0398256e
Branches
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ async function writeUpdates(config, packageFiles, allBranches) { ...@@ -32,7 +32,7 @@ async function writeUpdates(config, packageFiles, allBranches) {
); );
branch.res = res; branch.res = res;
// @ts-ignore // @ts-ignore
if (res === 'pr-closed' || res === 'automerged') { if (res === 'automerged' && config.automergeType !== 'pr-comment') {
// Stop procesing other branches because base branch has been changed // Stop procesing other branches because base branch has been changed
return res; return res;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment