From b4e104925d16b720721d29e30f74106331993142 Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Tue, 19 May 2026 10:57:39 +0100 Subject: [PATCH] fix(ci): Ignore changelog entries in the autolabeller --- .forgejo/workflows/auto-labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/auto-labeler.yml b/.forgejo/workflows/auto-labeler.yml index 9505797f5..71b59eb19 100644 --- a/.forgejo/workflows/auto-labeler.yml +++ b/.forgejo/workflows/auto-labeler.yml @@ -28,7 +28,7 @@ jobs: const labelsToAdd = new Set(); for (const file of fileNames) { - if (file.startsWith('docs/') || file.startsWith('theme/') || file.endsWith('.md') || file == 'rspress.config.ts') { + if (file.startsWith('docs/') || file.startsWith('theme/') || (file.endsWith('.md') && !file.startsWith('changelog.d/')) || file == 'rspress.config.ts') { labelsToAdd.add('Documentation'); } if (file.startsWith('.forgejo/')) {