Skip to content

Use uv action with cache and sync ruff version on CI #12

Use uv action with cache and sync ruff version on CI

Use uv action with cache and sync ruff version on CI #12

Workflow file for this run

name: PR Autofixes
on:
pull_request:
branches:
- main
jobs:
Autofixes:
runs-on: ubuntu-latest
# Only run autofixes on PRs
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
# Token with Contents permissions to allow retriggering workflow
token: ${{ secrets.PR_AUTOFIX_PAT }}
# Ruff autofixes
- run: cd canopeum_backend
- uses: astral-sh/ruff-action@v1
# Fix even on other steps failure
if: ${{ !cancelled() }}
with:
args: check --fix canopeum_frontend
- uses: astral-sh/ruff-action@v1
# Format even on lint failure
if: ${{ !cancelled() }}
with:
args: format canopeum_frontend
# ESLint & Dprint autofixes
- run: npm run lint:fix
working-directory: canopeum_frontend
# Fix even on other steps failure
if: ${{ !cancelled() }}
- name: Commit autofixes
uses: EndBug/add-and-commit@v9
# TODO: Prevent infinite loops, github.event.head_commit.author.name is not accessible in this context
# if: ${{ github.event.head_commit.author.name != 'github-actions' }}
# Push autofixes even on failure
if: ${{ !cancelled() }}
with:
default_author: github_actions