From 45e7d8d543ee94011c73b73746505abc9ebb433d Mon Sep 17 00:00:00 2001 From: Jonathan Hartman <208858388+cx-jonathan-hartman@users.noreply.github.com> Date: Tue, 16 Jun 2026 17:53:47 -0700 Subject: [PATCH] fix(actions): declare secrets used by reusable workflows Adds explicit on.workflow_call.secrets declarations for all secrets referenced in the workflow body, replacing implicit reliance on callers using secrets: inherit. --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 45fcfa8..9e2a777 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,6 +11,13 @@ on: description: 'Channels to publish development releases' required: false type: string + secrets: + JETBRAINS_PLUGIN_ID: + required: true + JETBRAINS_USER: + required: true + PERSONAL_ACCESS_TOKEN: + required: true workflow_dispatch: inputs: tag: