Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: uncheck retry checkbox after rebase #6691

Merged
merged 1 commit into from Jul 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/workers/branch/index.ts
Expand Up @@ -453,6 +453,7 @@ export async function processBranch(
// break if we pushed a new commit because status check are pretty sure pending but maybe not reported yet
if (
!masterIssueCheck &&
!config.rebaseRequested &&
commitHash &&
(config.requiredStatusChecks?.length || config.prCreation !== 'immediate')
) {
Expand Down
2 changes: 1 addition & 1 deletion lib/workers/pr/index.ts
Expand Up @@ -309,7 +309,7 @@ export async function ensurePr(
},
'PR title changed'
);
} else if (!config.committedFiles) {
} else if (!config.committedFiles && !config.rebaseRequested) {
logger.debug(
{
prTitle,
Expand Down