Files
hugo-richard-posts/.gitea/workflows/send-post-updates.yml
richardoswald 2ea72824a9
All checks were successful
Push post module update to hugo reo / push-module-update (push) Successful in 12s
Add .gitea/workflows/send-post-updates.yml
2025-06-09 12:39:05 -05:00

16 lines
598 B
YAML

name: Push post module update to hugo reo
on: push
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' \
-H 'accept: application/json' \
-H 'Authorization: token ${{ secret.PAT_TOKEN }}' \
-H 'Content-Type: application/json' \
-d '{
"inputs": {},
"ref": "refs/heads/main"
}'