Skip to content

Instantly share code, notes, and snippets.

@PauloLuan
Created February 21, 2022 11:26
Show Gist options
  • Save PauloLuan/f46a46215cc4b6a9ee030f5bdf40e524 to your computer and use it in GitHub Desktop.
Save PauloLuan/f46a46215cc4b6a9ee030f5bdf40e524 to your computer and use it in GitHub Desktop.
github actions cron example
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