From 5839493848a4e2e7925fc176a3820ec54be2a87b Mon Sep 17 00:00:00 2001 From: Marxist-Leninist Date: Wed, 8 Apr 2026 13:47:57 +0000 Subject: [PATCH] ci: labeler workflow uses fork's own labeler.yml The workflow hard-coded `repository: ggml-org/llama.cpp` on its checkout step, so it always read upstream's labeler.yml regardless of what's in this fork. Upstream currently uses v5 `all:` composition syntax under `changed-files`, which actions/labeler@v6 rejects with: Unknown config options were under "changed-files": all Every PR to this fork has been failing the labeler check since the action was bumped to v6. Removing the hard-coded repository on the checkout step makes pull_request_target use its default (this fork's master), which already uses the correct v6 syntax. This decouples the fork from upstream's labeler.yml schema and unblocks CI without waiting for upstream to fix theirs. --- .github/workflows/labeler.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index eab20c68811..c4aee7f7878 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -10,8 +10,6 @@ jobs: runs-on: ubuntu-slim steps: - uses: actions/checkout@v6 - with: - repository: "ggml-org/llama.cpp" - uses: actions/labeler@v6 with: configuration-path: '.github/labeler.yml'