Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Update README.md

Update README.md #831

Workflow file for this run

name: Substreams
on:
push
# schedule:
# # every 2 hours
# - cron: "30 */2 * * *"
# workflow_dispatch:
jobs:
substreams:
runs-on: ubuntu-latest
env:
STREAMINGFAST_KEY: ${{ secrets.STREAMINGFAST_KEY }}
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm start
- run: git pull
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated data download
commit_author: firehosebot <[email protected]>
push_options: '--force'
skip_fetch: true