Skip to content

Update README.md

Update README.md #648

Workflow file for this run

name: Update README.md
on:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: '0 21 1/2 * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
node-version: '16'
token: ${{ secrets.PAT }}
- name: Use Nodejs
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Run update readme
run: npm run update-resources
env:
DATABASE_ID: ${{ secrets.DATABASE_ID }}
NOTION_SECRET_KEY: ${{ secrets.NOTION_SECRET_KEY }}
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
author_name: Pablo Sirera
author_email: psirera4@gmail.com
message: "Update README with new resources"
env:
GITHUB_TOKEN: ${{ secrets.PAT }}