Warmup HTTP Request #24800
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
# render.comのコールドスリープを防ぐために10分ごとにGETリクエストを送る | |
name: Warmup HTTP Request | |
on: | |
schedule: | |
- cron: '*/10 * * * *' | |
jobs: | |
http_request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send GET Request | |
run: | | |
curl ${{ secrets.ENGLISH_TEACHRE_URL }} |