]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Update PR auto-labeling for chore titles
authorshamoon <4887959+shamoon@users.noreply.github.com>
Wed, 3 Sep 2025 17:14:41 +0000 (10:14 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Wed, 3 Sep 2025 17:14:41 +0000 (10:14 -0700)
.github/workflows/pr-bot.yml

index 5a5ff6ea98f5c249bd46075df27dbbdb16932daa..9f5bf5020f4c92fa7f0c987f59ee55e9b00c6a3f 100644 (file)
@@ -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
             }