-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Fix cannot reopen after pushing commits to a closed PR #23189
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
Changes from 2 commits
95ef3d9
fd59c8c
799fb4b
210a6ce
5f2417b
92ae573
b6f348b
cf9fea6
8f4ed45
219ffc8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -587,7 +587,7 @@ func PrepareViewPullInfo(ctx *context.Context, issue *issues_model.Issue) *git.C | |
ctx.Data["HeadBranchCommitID"] = headBranchSha | ||
ctx.Data["PullHeadCommitID"] = sha | ||
|
||
if pull.HeadRepo == nil || !headBranchExist || headBranchSha != sha { | ||
if pull.HeadRepo == nil || !headBranchExist { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We've run into cases where a PR had a difference in these SHAs and so was shown as broken, even when it had never been closed. But we have not been able to get a clear repro case yet. Maybe this test can be skipped for closed PRs, but remain for open PRs? If what's shown in the PR and what's in the head branch is not the same, I think it's important to show that to avoid accidentally merging the wrong code. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. okey, now skip the test when only the PR is closed |
||
ctx.Data["IsPullRequestBroken"] = true | ||
if pull.IsSameRepo() { | ||
ctx.Data["HeadTarget"] = pull.HeadBranch | ||
|
Uh oh!
There was an error while loading. Please reload this page.