rabil commited on
Commit
10b02dc
1 Parent(s): abcf4b3

chore: Add Pinger workflow to periodically send a request to PINGER_URL

Browse files
Files changed (1) hide show
  1. .github/workflows/pinger.yml +13 -0
.github/workflows/pinger.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Pinger
2
+
3
+ on:
4
+ schedule:
5
+ # run every 46 hours
6
+ - cron: '0 0 * * *'
7
+ workflow_dispatch:
8
+
9
+ jobs:
10
+ pinger:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - run: curl -s ${{ secrets.PINGER_URL }}