From 98517ab614b1a912cf34332ae74de47b72eb5c7d Mon Sep 17 00:00:00 2001 From: Harminder Virk Date: Tue, 2 Jun 2026 09:30:29 +0530 Subject: [PATCH] fix(release): pass secrets to checks job The harden-release-workflow PR (#128) dropped 'secrets: inherit' from the checks job in release.yml. The reusable checks workflow uses integration-test secrets like RESEND_API_KEY, so the next release run failed with empty env vars. Re-adding secrets: inherit restores the previous behaviour. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 15df4fa..c0eef68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,7 @@ jobs: permissions: contents: read uses: ./.github/workflows/checks.yml + secrets: inherit release: needs: checks