Skip to content

Hourly Update

Hourly Update #35901

Workflow file for this run

name: Hourly Update
on:
workflow_dispatch:
schedule:
- cron: "30/60 * * * *" # Every hour
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Node setup
uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Install
run: npm install --production
- name: Update
run: npm start hourly
- name: Commit
uses: EndBug/add-and-commit@v5
with:
author_name: Trackbot
message: "chore: Hourly Update"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}