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 eb3e95c commit 79f7298Copy full SHA for 79f7298
.github/workflows/pr-labeler.yml
@@ -38,12 +38,12 @@ jobs:
38
// Determine which label to apply
39
let newLabel = null;
40
41
- if (title.startsWith('feat')) {
+ if (title.includes('deprecate')) {
42
+ newLabel = 'Changelog: Deprecation';
43
+ } else if (title.startsWith('feat')) {
44
newLabel = 'Changelog: Feature';
45
} else if (title.startsWith('fix') || title.startsWith('bugfix')) {
46
newLabel = 'Changelog: Bugfix';
- } else if (title.includes('deprecate')) {
- newLabel = 'Changelog: Deprecation';
47
} else if (title.startsWith('docs')) {
48
newLabel = 'Changelog: Docs';
49
} else if (title.startsWith('ref') || title.startsWith('test')) {
0 commit comments