Skip to content

run hippo

run hippo #742

Workflow file for this run

name: run hippo
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
contents: read
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: restore cache
uses: dawidd6/action-download-artifact@80620a5d27ce0ae443b965134db88467fc607b43 # tag: v7
continue-on-error: true
with:
name: cache
workflow: cron.yml
- name: npm install
run: npm install
- name: npm start
run: npm start
env:
POSTGRES_URI: ${{ secrets.POSTGRES_URI }}
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
CC_USERS: ${{ secrets.CC_USERS }}
- name: persist cache
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # tag: v4.5.0
with:
name: cache
path: .cache
include-hidden-files: true