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

scraper

scraper #26136

Workflow file for this run

name: scraper
on:
schedule:
- cron: '0 * * * *'
env:
NODE_ENV: production
jobs:
scrape:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{secrets.PAT}}
- name: Use Node.js 15.x
uses: actions/setup-node@v2
with:
node-version: 15.x
- run: npm ci
- run: npm run scraper
- uses: stefanzweifel/[email protected]
with:
file_pattern: README.md docs/*.md
commit_message: 'docs: update categories'
branch: main
env:
GITHUB_TOKEN: ${{ secrets.PAT }}