From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 3 Sep 2025 17:14:41 +0000 (-0700) Subject: Update PR auto-labeling for chore titles X-Git-Tag: v2.18.4~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=de2ddad5ee661e3ca60380144e20b1b12adfbe5f;p=thirdparty%2Fpaperless-ngx.git Update PR auto-labeling for chore titles --- 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 }