(type: string)
| 1590 | } |
| 1591 | |
| 1592 | function bumpSectionHeader(type: string): string { |
| 1593 | // I think pixelated css gets stripped but may as well leave it |
| 1594 | // wrapping in <a> prevents Gmail dark mode from inverting the image |
| 1595 | const label = `${type.charAt(0).toUpperCase() + type.slice(1)} releases`; |
| 1596 | const frog = `<a href="https://bumpy.varlock.dev" title="${label}"><img src="${FROG_IMG_BASE}/frog-${type}.png" alt="${type}" width="52" style="image-rendering: pixelated;" align="right" /></a>`; |
| 1597 | return `### ${frog} ${label}`; |
| 1598 | } |
| 1599 | |
| 1600 | /** Build inline diff links for a package's changed files in the PR */ |
| 1601 | function buildDiffLinks(pkgDir: string, changesBaseUrl: string | null): string { |
no outgoing calls
no test coverage detected
searching dependent graphs…