(version: string)
| 16 | import { openExternalLink } from './comms'; |
| 17 | |
| 18 | export function openGitifyReleaseNotes(version: string) { |
| 19 | openExternalLink( |
| 20 | `${APPLICATION.GITHUB_BASE_URL}/${APPLICATION.REPO_SLUG}/releases/tag/${version}` as Link, |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | export function openGitHubNotifications(hostname: Hostname) { |
| 25 | const url = new URL(`https://${hostname}`); |
no test coverage detected