(commit)
| 57 | } |
| 58 | |
| 59 | function maybeExtractReleaseVersion(commit) { |
| 60 | const versionRegex = /release: cut the (.*?) release/; |
| 61 | const matches = commit.match(versionRegex); |
| 62 | return matches ? matches[1] || matches[2] : null; |
| 63 | } |
| 64 | |
| 65 | // Checks whether commit message matches any patterns in ignore list. |
| 66 | function shouldIgnoreCommit(commitMessage, ignorePatterns) { |
no test coverage detected
searching dependent graphs…