From 8c740d1339ba53250a8785ff2e73c21a95727637 Mon Sep 17 00:00:00 2001 From: Loris Leiva Date: Wed, 20 May 2026 13:31:24 +0100 Subject: [PATCH 1/2] 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 From e55bd1ca532c3e346bcc9758a1615c549735879c Mon Sep 17 00:00:00 2001 From: Loris Leiva Date: Tue, 26 May 2026 10:56:54 +0100 Subject: [PATCH 2/2] Replace with migrated action from Solana Program --- .github/workflows/publish-js.yml | 2 +- .github/workflows/publish-rust.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-js.yml b/.github/workflows/publish-js.yml index c8c3308..fdf29dd 100644 --- a/.github/workflows/publish-js.yml +++ b/.github/workflows/publish-js.yml @@ -46,7 +46,7 @@ jobs: uses: actions/checkout@v4 - name: Summarise workflow inputs - uses: lorisleiva/workflow-inputs-action@v1 + uses: solana-program/actions/workflow-inputs@v1 - name: Compute variables id: compute diff --git a/.github/workflows/publish-rust.yml b/.github/workflows/publish-rust.yml index 78fdea5..9750148 100644 --- a/.github/workflows/publish-rust.yml +++ b/.github/workflows/publish-rust.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@v4 - name: Summarise workflow inputs - uses: lorisleiva/workflow-inputs-action@v1 + uses: solana-program/actions/workflow-inputs@v1 - name: Compute variables id: compute