mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 13:42:12 -03:00
- Add scripts/update_supporters.py to generate supporter list from JSON - Set up GitHub Action to auto-update README.md on supporters.json change - Update README.md with placeholders and personalized gratitude message
32 lines
726 B
YAML
32 lines
726 B
YAML
name: Update Supporters in README
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'data/supporters.json'
|
|
branches:
|
|
- main
|
|
workflow_dispatch: # Allow manual trigger
|
|
|
|
jobs:
|
|
update-readme:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: Update README
|
|
run: python scripts/update_supporters.py
|
|
|
|
- name: Commit and push changes
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: "docs: auto-update supporters list in README"
|
|
file_pattern: "README.md"
|