| 10 | const ChangelogEntryRegex = /^\[(new|fixed|improved|removed|added)\]\s(.*)/i |
| 11 | |
| 12 | interface IParsedCommit { |
| 13 | readonly prID: number |
| 14 | readonly owner: string |
| 15 | } |
| 16 | |
| 17 | function parseCommitTitle(line: string): IParsedCommit { |
| 18 | // E.g.: Merge pull request #2424 from desktop/fix-shrinkwrap-file |
nothing calls this directly
no outgoing calls
no test coverage detected