From 7c62dd29c36b1e6446dbcc7a6a9967e339faad36 Mon Sep 17 00:00:00 2001 From: Randolf Jung Date: Tue, 24 Feb 2026 12:14:33 -0800 Subject: [PATCH] fix: replace non-existent peter-evans/workflow-dispatch with gh CLI The peter-evans/workflow-dispatch action does not exist. Replace it with the equivalent gh workflow run command using the GitHub CLI. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a899462..4ddbd2c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -259,12 +259,11 @@ jobs: make_latest: ${{ needs.meta.outputs.is_prerelease == 'false' }} - name: Trigger release notes workflow - uses: peter-evans/workflow-dispatch@v3 - with: - token: ${{ secrets.RELEASE_TOKEN }} - workflow: release-notes.yml - inputs: >- - {"tag": "${{ needs.meta.outputs.tag }}"} + env: + GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} + run: | + gh workflow run release-notes.yml \ + --field tag="${{ needs.meta.outputs.tag }}" attest-provenance: