Skip to content

Commit

Permalink
fix: add baseRefOID to scmPR -> graphql conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
Skisocks committed Oct 31, 2023
1 parent be5f633 commit d6221c3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -1918,6 +1918,7 @@ func scmPRToGraphQLPR(scmPR *scm.PullRequest, scmRepo *scm.Repository) *PullRequ
BaseRef: baseRef,
HeadRefName: githubql.String(scmPR.Source),
HeadRefOID: githubql.String(scmPR.Head.Sha),
BaseRefOID: githubql.String(scmPR.Base.Sha),
Mergeable: mergeable,
Repository: scmRepoToGraphQLRepo(scmRepo),
Labels: labels,
Expand Down

0 comments on commit d6221c3

Please sign in to comment.