render_video/.forgejo/workflows/webhook.yml
Dominic 2ba0f6a075
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 5s
CI: apparently forgejo prefers github vendor prefix
2024-05-26 12:21:54 +02:00

17 lines
458 B
YAML

name: Trigger quay.io Webhook
on:
push:
jobs:
run:
runs-on: alpine-latest
steps:
- run: |
apk add ca-certificates curl
curl -v -X POST --data '{
"commit": "${{github.sha}}",
"ref": "${{github.ref}}",
"default-branch": "main"
}' 'https://$token:${{secrets.quay_token}}@quay.io/webhooks/push/trigger/48d15dc7-ef9a-45bd-83e6-e1714c73dca6'
shell: ash -eo pipefail {0}