15 lines
338 B
YAML
15 lines
338 B
YAML
name: Build on push
|
|
on:
|
|
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 |