Created
February 21, 2022 11:26
-
-
Save PauloLuan/f46a46215cc4b6a9ee030f5bdf40e524 to your computer and use it in GitHub Desktop.
github actions cron example
This file contains hidden or 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: 1-minute-cron | |
on: | |
schedule: | |
- cron: '*/1 * * * *' | |
jobs: | |
cron: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Call the data scrapper API route | |
run: | | |
curl --request GET \ | |
--url 'https://kucoin.pauloluan.com/api/data-scrapper' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment