From 6360117f49b5bd246ad98459bae34a03ae52288e Mon Sep 17 00:00:00 2001 From: richardoswald Date: Mon, 9 Jun 2025 12:42:43 -0500 Subject: [PATCH] Update .gitea/workflows/send-post-updates.yml --- .gitea/workflows/send-post-updates.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/send-post-updates.yml b/.gitea/workflows/send-post-updates.yml index 2a69463..466fd50 100644 --- a/.gitea/workflows/send-post-updates.yml +++ b/.gitea/workflows/send-post-updates.yml @@ -4,13 +4,10 @@ jobs: push-module-update: runs-on: ubuntu-latest steps: - - run: | - curl -X 'POST' \ - 'https://git.theoswalds.com/api/v1/repos/public/hugo-richard/actions/workflows/hugo-build.yml/dispatches' \ + - name: trigger-hugo-richard-workflow + run: | + curl -X POST https://git.theoswalds.com/api/v1/repos/public/hugo-richard/actions/workflows/hugo-build.yml/dispatches \ -H 'accept: application/json' \ -H 'Authorization: token ${{ secret.PAT_TOKEN }}' \ -H 'Content-Type: application/json' \ - -d '{ - "inputs": {}, - "ref": "refs/heads/main" - }' \ No newline at end of file + -d '{"inputs": {}, "ref": "refs/heads/main"}' \ No newline at end of file