Skip to content

Instantly share code, notes, and snippets.

@ysm-dev
Created August 3, 2019 15:22
Show Gist options
  • Select an option

  • Save ysm-dev/8306a15f73a460834dbc03e37e23519e to your computer and use it in GitHub Desktop.

Select an option

Save ysm-dev/8306a15f73a460834dbc03e37e23519e to your computer and use it in GitHub Desktop.
Markdium-▶️ Github Actions에 추가된 schedule 기능으로 Crontab 대체하기
workflow "Run every 8 AM" {
on = "schedule(0 23 * * *)"
resolves = [
"Take screenshots & Send Email",
]
}
action "Take screenshots & Send Email" {
uses = "./"
env = {
GMAIL_ID = "[email protected]"
}
secrets = ["GMAIL_PW"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment