Skip to content

Commit 51c59cd

Browse files
authored
Create wake_up.yml
1 parent f4f4082 commit 51c59cd

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/wake_up.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)