| 26 | ]; |
| 27 | |
| 28 | export interface GithubChangelogOptions { |
| 29 | /** "owner/repo" — auto-detected from gh CLI if not provided */ |
| 30 | repo?: string; |
| 31 | /** Whether to include commit hash links in changelog entries (default: false) */ |
| 32 | includeCommitLink?: boolean; |
| 33 | /** Whether to include "Thanks @user" messages for contributors (default: true) */ |
| 34 | thankContributors?: boolean; |
| 35 | /** GitHub usernames (without @) to skip "Thanks" messages for (e.g. internal team members) */ |
| 36 | internalAuthors?: string[]; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * GitHub-enhanced changelog formatter. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…