From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 4 Sep 2025 00:08:20 +0000 (-0700) Subject: Fix chore label assignment logic in PR bot workflow X-Git-Tag: v2.18.4~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=852eb0ef366408a54bab7b56970b3e502a5ac017;p=thirdparty%2Fpaperless-ngx.git Fix chore label assignment logic in PR bot workflow --- diff --git a/.github/workflows/pr-bot.yml b/.github/workflows/pr-bot.yml index 9f5bf5020f..b918ec0afc 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 }