Skip to content

Add Vector for the live Rumble proof #4

Add Vector for the live Rumble proof

Add Vector for the live Rumble proof #4

name: Publish bot catalog
on:
pull_request:
types: [closed]
permissions:
contents: write
jobs:
publish:
if: github.event.pull_request.merged && github.event.pull_request.base.ref == 'main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: python scripts/validate_bot.py --root . --owner '${{ github.event.pull_request.user.login }}' --smoke --generate
- run: |
git config user.name 'github-actions[bot]'
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
git add bots/index.json bots/owners.json
git diff --cached --quiet || git commit -m 'chore: regenerate bot catalog'
git push