Skip to content

Commit

Permalink
chore: add webhook cron
Browse files Browse the repository at this point in the history
  • Loading branch information
DSchau committed Dec 8, 2023
1 parent 69acdb3 commit 4c49297
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/webhooks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: API Client Summary
on:
schedule:
# Runs at 08:00 UTC (12:00 AM PST) every Thursday
- cron: '0 8 * * 4'
jobs:
webhook-invocation:
runs-on: ubuntu-latest

steps:
- name: Invoke Webhook
run: |
curl -X POST -H "Content-Type: application/json" ${{ secrets.API_CLIENT_URL }}

0 comments on commit 4c49297

Please sign in to comment.