Skip to content

Update README to enhance clarity on participation issues #6

Update README to enhance clarity on participation issues

Update README to enhance clarity on participation issues #6

Workflow file for this run

name: Update README
on:
push:
branches:
- main
paths:
- 'userjs/**'
- 'markjs/**'
- '.github/scripts/update_readme.py'
workflow_dispatch:
permissions:
contents: write
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Run update script
run: python .github/scripts/update_readme.py
- name: Commit and push changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add README.md README_CN.md
git diff --quiet && git diff --staged --quiet || (git commit -m "Auto-update README script lists" && git push)