From c41f74dc79e07c927631625b606bbf271c53fbaa Mon Sep 17 00:00:00 2001 From: Erik Marks <25517051+rekmarks@users.noreply.github.com> Date: Fri, 23 Jan 2026 10:24:47 -0800 Subject: [PATCH] fix(ci): Add secrets: inherit to publish-coverage job The publish-coverage job calls the publish-gh-pages reusable workflow which requires PUBLISH_PAGES_TOKEN from the github-pages environment. Without secrets: inherit, the secrets context in reusable workflows is empty, even when an environment is declared at the job level. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1de08e9be..773f45df9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -77,6 +77,7 @@ jobs: artifact_name: coverage permissions: contents: write + secrets: inherit is-release: name: Determine whether this is a release merge commit