https://github.com/844196/actions
https://github.com/844196/actions
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/844196/actions
- Owner: 844196
- Created: 2018-12-20T11:56:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-21T16:57:08.000Z (about 6 years ago)
- Last Synced: 2025-03-05T12:42:38.671Z (4 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# actions
## `844196/actions/pixela`
Reflect the number of commits since the last push in the graph.
```workflow
workflow "Update Pixela graph" {
on = "push"
resolves = ["Update graph"]
}action "Update graph" {
uses = "844196/actions/pixela@master"
env = {
PIXELA_USER = "s083027"
PIXELA_GRAPH = "test"
}
# https://github.com///settings/secrets
secrets = ["PIXELA_TOKEN"]
}
```## `844196/actions/clasp`
[google/clasp](https://github.com/google/clasp) helper.
```workflow
workflow "Push to GAS" {
on = "push"
resolves = ["clasp push"]
}action "clasp push" {
uses = "844196/actions/clasp@master"
args = "push"
# copy from `~/.clasprc.json` and set to https://github.com///settings/secrets
secrets = ["CLASPRC_JSON"]
}
```