From 79264a81c52c73d7991623c215765d90bf49bfcc Mon Sep 17 00:00:00 2001 From: Ruben Taelman Date: Wed, 26 Aug 2026 06:05:07 +0000 Subject: [PATCH] Fix tab indentation in issue labeler config The "Label new issues" workflow failed on every issue event with "YAMLException: tab characters must not be used in indentation (4:1)" because .github/labeler.yml indented the last entry with a literal tab. YAML forbids tabs in indentation, so github/issue-labeler could never load the config. Replace the tab with four spaces to match the other entries, and add the missing trailing newline. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01K7fsgfe7hzFGGuUCdw17DC --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 23eb125..8870217 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,4 +1,4 @@ bug 🐛: - '- :bug: Bug' feature ➕: - - '- :heavy_plus_sign: Feature request' \ No newline at end of file + - '- :heavy_plus_sign: Feature request'