[BUG] Use correct SHA in GetCommitPullRequest

- The param wasn't `sha`, it was `ref`. Use this instead.
- Adds new integration tests.
- Resolves #4190
- Resolves #4025
This commit is contained in:
Gusted 2024-07-06 22:04:31 +02:00
parent 98c8d45f0b
commit a8460bb132
No known key found for this signature in database
GPG key ID: FD821B732837125F
2 changed files with 15 additions and 1 deletions

View file

@ -354,7 +354,7 @@ func GetCommitPullRequest(ctx *context.APIContext) {
// "404":
// "$ref": "#/responses/notFound"
pr, err := issues_model.GetPullRequestByMergedCommit(ctx, ctx.Repo.Repository.ID, ctx.Params(":sha"))
pr, err := issues_model.GetPullRequestByMergedCommit(ctx, ctx.Repo.Repository.ID, ctx.Params("ref"))
if err != nil {
if issues_model.IsErrPullRequestNotExist(err) {
ctx.Error(http.StatusNotFound, "GetPullRequestByMergedCommit", err)