From 09ca33e0b6fb9ca6fcd8ca7c8a8318a10ed90801 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Fri, 24 Apr 2026 11:12:16 +0300 Subject: [PATCH] debug(ci): log dispatch URL and response body for 422 diagnosis Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/poll-upstream.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/poll-upstream.yml b/.gitea/workflows/poll-upstream.yml index baee06f..6dcdb9b 100644 --- a/.gitea/workflows/poll-upstream.yml +++ b/.gitea/workflows/poll-upstream.yml @@ -45,7 +45,9 @@ jobs: - name: Trigger build workflow if: steps.published.outputs.already_built == 'false' run: | - curl --fail --silent --show-error --location \ + echo "Dispatching build for tag: ${{ steps.upstream.outputs.tag }}" + echo "URL: ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/actions/workflows/build-release.yml/dispatches" + curl --silent --show-error --location \ --request POST \ --header "Authorization: token ${{ secrets.DISPATCH_TOKEN }}" \ --header 'Accept: application/json' \