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

fix(master-issue): skip updating if exiting early due to autome… (#4104)

parent d9773791
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,9 @@ async function renovateRepository(repoConfig) { ...@@ -26,7 +26,9 @@ async function renovateRepository(repoConfig) {
config config
); );
await ensureOnboardingPr(config, packageFiles, branches); await ensureOnboardingPr(config, packageFiles, branches);
if (res !== 'automerged') {
await ensureMasterIssue(config, branches); await ensureMasterIssue(config, branches);
}
await finaliseRepo(config, branchList); await finaliseRepo(config, branchList);
repoResult = processResult(config, res); repoResult = processResult(config, res);
} catch (err) /* istanbul ignore next */ { } catch (err) /* istanbul ignore next */ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment