Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/scripts/prs/checkTypeLabel.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ const typeLabels = [
'type: regression',
'type: enhancement',
'type: new feature',
// only used by renovate bot so we can ignore the "type: " prefix here
// Those are not technically type labels but for those kind of PRs, adding a type is so redundant
// that it feels like noise.
'dependencies',
'duplicate',
'release',
];
const labelRegex = new RegExp(`\\b(${typeLabels.join('|')})\\b`, 'i');
Expand Down