MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / shouldSkipCommit

Function shouldSkipCommit

scripts/draft-changelog.ts:235–242  ·  view source on GitHub ↗
(commit: RawCommit)

Source from the content-addressed store, hash-verified

233}
234
235export function shouldSkipCommit(commit: RawCommit) {
236 const subject = commit.subject.toLowerCase();
237 return (
238 subject.includes("[skip changelog]") ||
239 /^chore: release v\d+\.\d+\.\d+/.test(subject) ||
240 /^chore: bump version/.test(subject)
241 );
242}
243
244export function parseCommit(commit: RawCommit): ParsedCommit {
245 const prNumber = extractPrNumber(commit.subject);

Callers 3

getWeeklyCommitsFunction · 0.90
createDraftFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected