From bade9fa99c9977ed8fc45db3d8a58762f8509427 Mon Sep 17 00:00:00 2001 From: Johnathan Falk Date: Wed, 10 Jun 2026 08:54:46 -0400 Subject: [PATCH] fix(reusable-burndown): declare JF_CI_GH_PAT in workflow_call secrets secrets.JF_CI_GH_PAT was used in 4 container credential blocks but was not declared in on.workflow_call.secrets, causing GitHub Actions to reject the workflow with a validation error. All callers (nightly-burndown.yml in every repo) fail with 'workflow file issue'. Add JF_CI_GH_PAT as optional so callers can pass secrets: inherit and fall back to GITHUB_TOKEN when the PAT is absent. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/reusable-burndown.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-burndown.yml b/.github/workflows/reusable-burndown.yml index 45e08fe0..aa4616ed 100644 --- a/.github/workflows/reusable-burndown.yml +++ b/.github/workflows/reusable-burndown.yml @@ -1,5 +1,5 @@ # file: .github/workflows/reusable-burndown.yml -# version: 1.11.0 +# version: 1.11.1 # Reusable per-repo burndown workflow — lives in ghcommon, called from every repo. # # Usage: @@ -69,6 +69,8 @@ on: required: false BURNDOWN_BOT_OPENAI_API_KEY: required: false + JF_CI_GH_PAT: + required: false permissions: contents: read