From 852eb0ef366408a54bab7b56970b3e502a5ac017 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 3 Sep 2025 17:08:20 -0700 Subject: [PATCH] Fix chore label assignment logic in PR bot workflow --- .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 9f5bf5020..b918ec0af 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) && /^(chore)/i.test(title)) { + } else if (!/^(dependabot)/i.test(title) && !/^(chore)/i.test(title)) { labels.push('enhancement'); // Default fallback }