Skip to content

Auto update the README for new extensions added #1

Auto update the README for new extensions added

Auto update the README for new extensions added #1

Workflow file for this run

name: README
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
NODE_OPTIONS: --max_old_space_size=6144
jobs:
build:
name: Update & PR
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Install dependencies
shell: bash
run: pnpm install
- name: Update README
run: pnpm run readme
- name: Commit changes
run: |
git config --local user.name \
"github-actions[bot]"
git config --local user.email \
"41898282+github-actions[bot]@users.noreply.github.com"
git add .
git diff-index --quiet HEAD \
|| git commit -m "Autocommit: updated at $(date -u)"