lewisdale.dev/.gitea/workflows/update.yaml
Lewis Dale d983e623bb
All checks were successful
Build on push / build-webhook (push) Successful in 40s
Try using scheduled tasks
2024-03-07 12:22:09 +00:00

16 lines
346 B
YAML

name: Build on push
on:
push:
schedule:
- cron: '@hourly'
jobs:
build-webhook:
runs-on: ubuntu-latest
steps:
- name: Call the webhook
uses: distributhor/workflow-webhook@v3
with:
webhook_url: ${{ secrets.WEBHOOK_URL }}
webhook_secret: ${{ secrets.WEBHOOK_KEY }}
verbose: true