Skip to content

chore: bump beautifulsoup4 from 4.11.2 to 4.12.2 (#46) #25

chore: bump beautifulsoup4 from 4.11.2 to 4.12.2 (#46)

chore: bump beautifulsoup4 from 4.11.2 to 4.12.2 (#46) #25

name: "pre-commit - push autofix"
on:
push:
branches: [main]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install pre-commit
run: |
pip install pre-commit
- name: Run pre-commit
run: |
pre-commit run --all-files
- name: Push to GitHub Pages
continue-on-error: true
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "chore: fixes from pre-commit" -a
git push origin HEAD:main