Skip to content

Bump stefanzweifel/git-auto-commit-action from 4.16.0 to 5.0.0 (#2005) #2226

Bump stefanzweifel/git-auto-commit-action from 4.16.0 to 5.0.0 (#2005)

Bump stefanzweifel/git-auto-commit-action from 4.16.0 to 5.0.0 (#2005) #2226

Workflow file for this run

name: Run pre-commit hooks
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
run-hooks:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo ⚡️
uses: actions/checkout@v4
- name: Set Up Python 🐍
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install pre-commit 📦
run: |
pip install --upgrade pip
pip install --upgrade pre-commit
- name: Run pre-commit hooks ✅
run: pre-commit run --all-files --hook-stage manual