refactor: resuse general PR struct

This commit is contained in:
Julian Tölle 2024-09-01 14:32:06 +02:00
parent 36a0b90bcd
commit 929d00d696
3 changed files with 18 additions and 14 deletions

View file

@ -28,14 +28,9 @@ func init() {
}
}
// ReleasePullRequest
//
// TODO: Reuse [git.PullRequest]
type ReleasePullRequest struct {
ID int
Title string
Description string
Labels []Label
git.PullRequest
Labels []Label
Head string
ReleaseCommit *git.Commit