Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/caphyon/wattspeed-action

Trigger a snapshot generation via a GitHub Actions
https://github.com/caphyon/wattspeed-action

Last synced: about 1 month ago
JSON representation

Trigger a snapshot generation via a GitHub Actions

Awesome Lists containing this project

README

        

# [Wattspeed](https://www.wattspeed.com) action

This action triggers a snapshot generation for a [Wattspeed](https://www.wattspeed.com) webpage

### Inputs

### `token`

**Required** The webpage token. Get this from your [Wattspeed's](https://www.wattspeed.com) webpage settings.

### Outputs

### `response`

Snapshot generation response.

## Usage

To use the action simply create an `wattspeed.yml` (or choose custom `*.yml` name) in the `.github/workflows/` directory.

For example:

```yaml
name: Wattspeed

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Wattspeed Action
uses: Caphyon/wattspeed-action@v1
with:
# [required]
# Get the token from the webpage settings
# inside your Wattspeed account
token: '8dyiuhdgjgh7y354uier'

```