Skip to content

Commit

Permalink
fix(onboarding): onboarding prs can have semantic prefixes causing re…
Browse files Browse the repository at this point in the history
…po to skip onboarded status. (#29285)

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
  • Loading branch information
PhilipAbed and viceice committed May 28, 2024
1 parent 9477aea commit 7392dbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/workers/repository/finalize/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export async function finalizeRepo(
(pr) =>
pr.state === 'merged' &&
pr.title !== 'Configure Renovate' &&
pr.title !== config.onboardingPrTitle,
pr.title !== config.onboardingPrTitle &&
pr.sourceBranch !== config.onboardingBranch,
)
) {
logger.debug('Repo is activated');
Expand Down

0 comments on commit 7392dbe

Please sign in to comment.