(changedFiles: string[])
| 332 | * of bump files that were added/modified. Shared by `check` and `ci check`. |
| 333 | */ |
| 334 | export function extractBumpFileIdsFromChangedFiles(changedFiles: string[]): Set<string> { |
| 335 | return new Set(changedFiles.filter((f) => /^\.bumpy\/.*\.md$/.test(f) && !f.endsWith('README.md')).map(fileToId)); |
| 336 | } |
| 337 | |
| 338 | /** |
| 339 | * Filter bump files to only those added/modified on the current branch. |
no outgoing calls
no test coverage detected
searching dependent graphs…