(prLink: HTMLAnchorElement)
| 12 | } |
| 13 | |
| 14 | async function addForRepositoryActions(prLink: HTMLAnchorElement): Promise<void> { |
| 15 | const prNumber = prLink.textContent.slice(1); |
| 16 | |
| 17 | const runLink = $('a:has(.Link--primary)', closestElement('.Box-row', prLink)); |
| 18 | setSearchParameter(runLink, 'pr', prNumber); |
| 19 | } |
| 20 | |
| 21 | async function addForPr(actionLink: HTMLAnchorElement): Promise<void> { |
| 22 | setSearchParameter(actionLink, 'pr', String(getConversationNumber())); |
nothing calls this directly
no test coverage detected