Skip to content

Add repo context support for GitHub issue creation #12

Add repo context support for GitHub issue creation

Add repo context support for GitHub issue creation #12

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"