Skip to content

Bump the minor-and-patch group across 1 directory with 5 updates #15

Bump the minor-and-patch group across 1 directory with 5 updates

Bump the minor-and-patch group across 1 directory with 5 updates #15

Workflow file for this run

name: Auto-fix
on:
pull_request:
branches: [main]
permissions:
contents: write
jobs:
auto-fix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
- uses: astral-sh/setup-uv@v7
- run: uv run ruff check --fix app/ packages/ tests/
- run: uv run ruff format app/ packages/ tests/
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "style: auto-fix ruff lint and formatting"