mirror of
https://github.com/wahyd4/upptime.git
synced 2026-08-09 05:06:31 +10:00
25 lines
554 B
YAML
25 lines
554 B
YAML
name: Summary CI
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
repository_dispatch:
|
|
types: [summary]
|
|
jobs:
|
|
release:
|
|
name: Generate README
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run script
|
|
run: npm run readme
|
|
env:
|
|
GH_PAT: ${{ secrets.GH_PAT }}
|
|
SECRET_SITE: ${{ secrets.SECRET_SITE }}
|