forked from cerner/terra-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dangerfile.js
31 lines (25 loc) · 1.23 KB
/
dangerfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// eslint-disable-next-line import/no-extraneous-dependencies, no-unused-vars, object-curly-newline
import { danger, warn, fail, message } from 'danger';
const newChangelog = danger.git.created_files.filter((filePath) => {
const srcFilePattern = /^packages\/terra-([a-z-])*\/CHANGELOG.md/i;
return srcFilePattern.test(filePath);
});
const modifiedChangelog = danger.git.modified_files.filter((filePath) => {
const srcFilePattern = /^packages\/terra-([a-z-])*\/CHANGELOG.md/i;
return srcFilePattern.test(filePath);
});
const modifiedSrcFiles = danger.git.modified_files.filter((filePath) => {
const srcFilePattern = /^packages\/terra-([a-z-])*\/src/i;
return srcFilePattern.test(filePath);
});
const hasCHANGELOGChanges = modifiedChangelog.length > 0 || newChangelog.length > 0;
const hasModifiedSrcFiles = modifiedSrcFiles.length > 0;
// Fail if there are src code changes without a CHANGELOG update
if (hasModifiedSrcFiles && !hasCHANGELOGChanges) {
fail('Please include a CHANGELOG entry with this PR.');
}
// Warn when there is a big PR
const bigPRThreshold = 1000;
if (danger.github.pr.additions + danger.github.pr.deletions > bigPRThreshold) {
warn(':exclamation: Big PR. Consider breaking this into smaller PRs if applicable');
}