We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4f4082 commit 51c59cdCopy full SHA for 51c59cd
.github/workflows/wake_up.yml
@@ -0,0 +1,14 @@
1
+# .github/workflows/wake_up.yml
2
+name: Wake up periodically
3
+on:
4
+ schedule:
5
+ - cron: "0 0 */5 * *" # 매 5일마다 실행, 자정에 실행
6
+ workflow_dispatch: # 수동 실행용
7
+jobs:
8
+ send_request:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - name: Send request
13
+ run: |
14
+ curl --request GET --url https://supabase-db를-사용하는-서비스-api-엔드포인트
0 commit comments