From 0b3b62f3bef0bf50d28a55ac5bf2902e09d77003 Mon Sep 17 00:00:00 2001 From: Jack Green Date: Thu, 11 Jun 2026 16:04:00 +0100 Subject: [PATCH] Add missing `distinct_id` param to `package.yml` Caused [execution failures when triggered from orchestrator](https://github.com/hazelcast/release-orchestrator/actions/runs/27355517705/job/80828644120#step:6:34). --- .github/workflows/package.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 56648df..7984c23 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -21,6 +21,9 @@ on: description: 'Environment to use' required: true type: environment + distinct_id: + description: 'Required exclusively for automated execution to track status of workflow execution' + required: false jobs: package: @@ -33,6 +36,12 @@ jobs: id-token: write pull-requests: write steps: + # https://github.com/Codex-/return-dispatch#receiving-repository-action + - name: Logging distinct ID (${{ inputs.distinct_id }}) + run: echo "${DISTINCT_ID}" + env: + DISTINCT_ID: ${{ inputs.distinct_id }} + - uses: actions/checkout@v6 # Required to get the default branch as well, to allow `gh` to accurately determine the diff between branches when deriving PR title from commits with: