Created
August 3, 2019 15:22
-
-
Save ysm-dev/8306a15f73a460834dbc03e37e23519e to your computer and use it in GitHub Desktop.
Markdium-▶️ Github Actions에 추가된 schedule 기능으로 Crontab 대체하기
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
| 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