formatLinkedIssueRef formats an issue reference as owner/repo#N.
(issue *api.LinkedIssue)
| 354 | |
| 355 | // formatLinkedIssueRef formats an issue reference as owner/repo#N. |
| 356 | func formatLinkedIssueRef(issue *api.LinkedIssue) string { |
| 357 | return fmt.Sprintf("%s#%d", issue.Repository.NameWithOwner, issue.Number) |
| 358 | } |
| 359 | |
| 360 | // formatLinkedIssueRefs formats a comma-separated list of linked issue |
| 361 | // references without titles. |
no outgoing calls
no test coverage detected