From 8c740d1339ba53250a8785ff2e73c21a95727637 Mon Sep 17 00:00:00 2001 From: Loris Leiva Date: Wed, 20 May 2026 13:31:24 +0100 Subject: [PATCH] Show workflow inputs in publish run summaries This PR adds [`lorisleiva/workflow-inputs-action@v1`](https://github.com/lorisleiva/workflow-inputs-action) to both publish workflows so the inputs used to dispatch a run are rendered as a table in the job summary. Makes it easy to see what was requested when reviewing a publish run later. --- .github/workflows/publish-js.yml | 3 +++ .github/workflows/publish-rust.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/publish-js.yml b/.github/workflows/publish-js.yml index f677564..c8c3308 100644 --- a/.github/workflows/publish-js.yml +++ b/.github/workflows/publish-js.yml @@ -45,6 +45,9 @@ jobs: - name: Git Checkout uses: actions/checkout@v4 + - name: Summarise workflow inputs + uses: lorisleiva/workflow-inputs-action@v1 + - name: Compute variables id: compute shell: bash diff --git a/.github/workflows/publish-rust.yml b/.github/workflows/publish-rust.yml index dcfdde8..78fdea5 100644 --- a/.github/workflows/publish-rust.yml +++ b/.github/workflows/publish-rust.yml @@ -52,6 +52,9 @@ jobs: - name: Git Checkout uses: actions/checkout@v4 + - name: Summarise workflow inputs + uses: lorisleiva/workflow-inputs-action@v1 + - name: Compute variables id: compute shell: bash