From 894231f4e4121b577a1928435cab2871de1eaeb1 Mon Sep 17 00:00:00 2001 From: Logan Riggs Date: Fri, 19 Dec 2025 16:40:00 -0800 Subject: [PATCH] Add logging for jarbuild action parameters. --- .github/workflows/jarbuild.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/jarbuild.yml b/.github/workflows/jarbuild.yml index e97b8978a..28ce4e369 100644 --- a/.github/workflows/jarbuild.yml +++ b/.github/workflows/jarbuild.yml @@ -44,6 +44,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: + - name: Print input values to log + run: | + echo "arrow_branch: ${{github.event.inputs.arrow_branch}}" + echo "arrow_repo: ${{github.event.inputs.arrow_repo}}" + echo "release_tag_name: ${{github.event.inputs.release_tag_name}}" - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: