lewisdale.dev/.gitea/workflows/update.yaml

15 lines
338 B
YAML
Raw Normal View History

2024-03-07 11:49:35 +00:00
name: Build on push
2024-03-07 12:22:09 +00:00
on:
schedule:
- cron: '@hourly'
2024-03-07 11:21:52 +00:00
jobs:
2024-03-07 11:49:35 +00:00
build-webhook:
2024-03-07 11:21:52 +00:00
runs-on: ubuntu-latest
steps:
2024-03-07 11:49:35 +00:00
- name: Call the webhook
uses: distributhor/workflow-webhook@v3
with:
webhook_url: ${{ secrets.WEBHOOK_URL }}
2024-03-07 12:00:15 +00:00
webhook_secret: ${{ secrets.WEBHOOK_KEY }}
verbose: true