24 lines
791 B
YAML
24 lines
791 B
YAML
|
name: Cron - webhookTriggers
|
||
|
|
||
|
on:
|
||
|
# "Scheduled workflows run on the latest commit on the default or base branch."
|
||
|
# — https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#schedule
|
||
|
schedule:
|
||
|
# Runs “every 5 minutes” (see https://crontab.guru)
|
||
|
- cron: "*/5 * * * *"
|
||
|
jobs:
|
||
|
cron-webhookTriggers:
|
||
|
env:
|
||
|
APP_URL: ${{ secrets.APP_URL }}
|
||
|
CRON_API_KEY: ${{ secrets.CRON_API_KEY }}
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: cURL request
|
||
|
if: ${{ env.APP_URL && env.CRON_API_KEY }}
|
||
|
run: |
|
||
|
curl ${{ secrets.APP_URL }}/api/cron/webhookTriggers \
|
||
|
-X POST \
|
||
|
-H 'content-type: application/json' \
|
||
|
-H 'authorization: ${{ secrets.CRON_API_KEY }}' \
|
||
|
--fail
|