From 811e5da2861dc5f88de1a51ea4dd3745d5a20b76 Mon Sep 17 00:00:00 2001 From: Nickolas Dimitrakas Date: Thu, 17 Sep 2026 10:36:45 -0400 Subject: [PATCH] ci: declare accepted secrets on dependabot rebase workflow Declares the specific secrets this reusable workflow needs under on.workflow_call.secrets, so callers can pass them explicitly instead of using secrets: inherit. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/dependabot-rebase-development.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-rebase-development.yml b/.github/workflows/dependabot-rebase-development.yml index ebe3ec4..c7fbefb 100644 --- a/.github/workflows/dependabot-rebase-development.yml +++ b/.github/workflows/dependabot-rebase-development.yml @@ -1,6 +1,14 @@ name: "Dependabot Branch Rebase" -on: [ workflow_call ] +on: + workflow_call: + secrets: + MP_SEMANTIC_RELEASE_BOT: + required: true + GPG_PRIVATE_KEY: + required: true + GPG_PASSPHRASE: + required: true jobs: rebase-branch: