An open API service indexing awesome lists of open source software.

https://github.com/844196/actions


https://github.com/844196/actions

Last synced: 3 months ago
JSON representation

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"]
}
```