diff --git a/.github/workflows/pr-bot.yml b/.github/workflows/pr-bot.yml index 5a5ff6ea9..9f5bf5020 100644 --- a/.github/workflows/pr-bot.yml +++ b/.github/workflows/pr-bot.yml @@ -37,7 +37,7 @@ jobs: labels.push('bug'); } else if (/^feature/i.test(title)) { labels.push('enhancement'); - } else if (!/^(dependabot)/i.test(title)) { + } else if (!/^(dependabot)/i.test(title) && /^(chore)/i.test(title)) { labels.push('enhancement'); // Default fallback }