From ac6e8926b3679ce1551138c9d854c765b9470ac9 Mon Sep 17 00:00:00 2001 From: baxyz Date: Fri, 24 Apr 2026 21:49:10 +0200 Subject: [PATCH 1/2] =?UTF-8?q?fix(workflows):=20=F0=9F=90=9B=20correct=20?= =?UTF-8?q?parameter=20name=20for=20trigganator=20token=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f19c73b..5ea847f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: id: trigganator uses: actions/create-github-app-token@v3 with: - app-id: ${{ vars.TRIGGANATOR_ID }} + client-id: ${{ vars.TRIGGANATOR_ID }} private-key: ${{ secrets.TRIGGANATOR_KEY }} owner: helpers4 repositories: website From f1e88a999421e744c9af11925442d9098710cc63 Mon Sep 17 00:00:00 2001 From: baxyz Date: Fri, 24 Apr 2026 22:08:33 +0200 Subject: [PATCH 2/2] =?UTF-8?q?fix(CI-CD):=20=F0=9F=90=9B=20escape=20JSON?= =?UTF-8?q?=20in=20client-payload=20for=20proper=20parsing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ea847f..a735495 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,4 +57,4 @@ jobs: token: ${{ steps.trigganator.outputs.token }} repository: helpers4/website event-type: devcontainer-release - client-payload: '{"version": "${{ github.ref_name }}"}' + client-payload: "{\"version\": \"${{ github.ref_name }}\"}"