We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b6b10 commit 56490f5Copy full SHA for 56490f5
scripts/validateChangelog.js
@@ -20,7 +20,9 @@ function main() {
20
const type = item.split('-')[0];
21
if (!ACCEPTABLE_ENTRIES.includes(type))
22
throw new Error(
23
- 'Invalid changelog type, valid types:' + ACCEPTABLE_ENTRIES.join(',')
+ `Invalid changelog type, valid types: ${ACCEPTABLE_ENTRIES.join(',')}
24
+ file: ${item}
25
+ `
26
);
27
const prNumber = item.split('-')[1].replace('.md', '');
28
if (prNumber === pullId) idFound = true;
0 commit comments