Skip to content

Update README with Providers Table #41

Update README with Providers Table

Update README with Providers Table #41

Workflow file for this run

name: Update README with Providers Table
on:
push:
paths:
- 'supported_providers.json'
- 'generate_providers_table.py'
workflow_dispatch:
schedule:
# Run weekly on Mondays at 9 AM UTC
- cron: '0 9 * * 1'
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run generate_providers_table.py
run: python generate_providers_table.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
git diff --cached --quiet || exit 0
git commit -m "docs: update providers table in README"
git push