Skip to content

NINDSS Data

NINDSS Data #413

Workflow file for this run

name: NINDSS Data
on:
# push:
# branches:
# - main
schedule:
- cron: '0 21 * * *'
workflow_dispatch:
jobs:
archive:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
ref: main
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run script
run: node index.js
timeout-minutes: 10
- name: Push data
run: |
git config user.name amacali
git config user.email [email protected]
git add . || exit 0
git commit -m "auto(): update feeds" || exit 0
git push || exit 0