Skip to content

Commit 1fbbd4f

Browse files
committed
feat(danger): ignore changelog check on "build(deps)" PRs
1 parent 4b9d178 commit 1fbbd4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

danger/dangerfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ async function checkChangelog() {
6868

6969
// Check if skipped
7070
if (
71-
["ci", "chore(deps)"].includes(prFlavor) ||
71+
["ci", "chore(deps)", "build(deps)"].includes(prFlavor) ||
7272
(danger.github.pr.body + "").includes("#skip-changelog")
7373
) {
7474
return;

0 commit comments

Comments
 (0)