Wake up periodically #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wake up periodically | |
on: | |
schedule: | |
- cron: "0 0 */5 * *" # 매 5일마다 실행, 자정에 실행 | |
workflow_dispatch: # 수동 실행용 | |
jobs: | |
send_request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Send request | |
run: | | |
curl --request GET --url https://birth-tunes-backend.fly.dev/songs/1988/4/30 \ | |
--header "nfteam-api-token: ${{ secrets.NFTEAM_API_TOKEN }}" |