From de2ddad5ee661e3ca60380144e20b1b12adfbe5f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:14:41 -0700 Subject: [PATCH] Update PR auto-labeling for chore titles --- .github/workflows/pr-bot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }