Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/hubbub/pull_requests.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ func (h *Engine) PRSummary(pr *github.PullRequest, cs []*github.PullRequestComme
co.Tags = append(co.Tags, "reviewed")
}

if pr.GetDraft() {
co.Tags = append(co.Tags, "draft")
}

// Technically not the same thing, but close enough for me.
co.ClosedBy = pr.GetMergedBy()

Expand Down