Skip to content

Fix: register issue no build artifact #382

Fix: register issue no build artifact

Fix: register issue no build artifact #382

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main, test]
jobs:
ruff:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- uses: astral-sh/ruff-action@v3
with:
args: "check --fix"
- uses: astral-sh/ruff-action@v3
with:
args: "format"
- uses: stefanzweifel/git-auto-commit-action@v5
if: github.event.pull_request.head.repo.full_name == github.repository
with:
commit_message: "style: auto-format with ruff"