From 925e19acf278e479f2dd6368393b8bb04f447d20 Mon Sep 17 00:00:00 2001 From: Kevin Minehart <5140827+kminehart@users.noreply.github.com> Date: Thu, 31 Jul 2025 15:33:27 -0500 Subject: [PATCH] CI: set source-event in release-build dispatch (#109009) * set source-event in release-build dispatch * missing inputs key --- .github/workflows/release-build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 231bb0395c2..33288a4f971 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -1,6 +1,12 @@ name: Build Release Packages on: workflow_dispatch: + inputs: + source-event: + description: If this workflow was triggered by another workflow, this value should be set to the GITHUB_EVENT_NAME of that source workflow. + type: string + required: false + default: workflow_dispatch schedule: # Every weeknight at midnight # "Scheduled workflows will only run on the default branch." (docs.github.com)