Replace Circle CI with GitHub Actions

This commit is contained in:
Matan Kushner
2019-04-06 18:16:42 -04:00
parent 2df7d3078e
commit f289bca357
6 changed files with 26 additions and 55 deletions

15
.github/main.workflow vendored Normal file
View File

@@ -0,0 +1,15 @@
workflow "Update gist with WakaTime stats" {
resolves = ["update-gist"]
on = "schedule(*/10 * * * *)"
}
action "update-gist" {
uses = "matchai/waka-box@master"
env = {
"GIST_ID" = "968220c97e8da1d047a9a480fa432e54"
}
secrets = [
"GH_TOKEN",
"WAKATIME_API_KEY",
]
}