From da566f09740764a11866bd11f8febf6876176596 Mon Sep 17 00:00:00 2001 From: hyperpolymath <6759885+hyperpolymath@users.noreply.github.com> Date: Mon, 14 Sep 2026 22:45:12 +0100 Subject: [PATCH] fix(ci): repair unparseable permissions scalar in 2 workflow file(s) A scalar `permissions: read-all` followed by an indented ` actions: read` is a YAML parse error, so the workflow never starts. It emits no check run at all, which means a required context silently never reports and the repository looks greener than a repaired one. `read-all` already grants `actions: read`, so deleting the stray line is a semantic no-op. Verified with a real parser: each file fails `yq` before the change and parses after it. Files: clusterfuzzlite.yml e2e.yml Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_0178nN4Nm3neFRy5K9StZKnB --- .github/workflows/clusterfuzzlite.yml | 1 - .github/workflows/e2e.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/clusterfuzzlite.yml b/.github/workflows/clusterfuzzlite.yml index dbf30706..49f366bc 100644 --- a/.github/workflows/clusterfuzzlite.yml +++ b/.github/workflows/clusterfuzzlite.yml @@ -22,7 +22,6 @@ on: - cron: '0 2 * * 0' # Sunday 02:00 UTC workflow_dispatch: permissions: read-all - actions: read concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index f65350db..75a45e36 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -27,7 +27,6 @@ on: - 'bindings/**' workflow_dispatch: permissions: read-all - actions: read concurrency: group: e2e-${{ github.ref }} cancel-in-progress: true