Skip to content

Commit

Permalink
print PR number
Browse files Browse the repository at this point in the history
  • Loading branch information
pPrecel committed Oct 18, 2023
1 parent eeebeaf commit 331f1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/artifacts/artifacts.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func prsToStringList(prs []*gh.PullRequest) []string {
for i := range prs {
pr := *prs[i]

title := fmt.Sprintf("%s %s", getStatePrefix(pr), pr.GetTitle())
title := fmt.Sprintf("%s (#%d) %s", getStatePrefix(pr), pr.GetNumber(), pr.GetTitle())
list = append(list, title)
}

Expand Down

0 comments on commit 331f1ad

Please sign in to comment.