Skip to content

Switch to hatch action, version bump #186

Switch to hatch action, version bump

Switch to hatch action, version bump #186

name: Autoformat and Lint
on:
pull_request:
push:
branches:
- main
jobs:
autoformat-and-lint:
name: Autoformat and Lint
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: 🛎 Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.WORKFLOW_COMMIT_TOKEN }}
- name: 🥚 Install Hatch
uses: pypa/hatch@install
- name: 📝 Static Analysis
run: hatch fmt
- name: ✅ Commit code format changes
if: github.ref != 'refs/heads/main'
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: Autoformat code"
skip_fetch: true
skip_checkout: true
- name: 📤 PR code format changes
if: github.ref == 'refs/heads/main'
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.PR_TOKEN }}
commit-message: "chore: Autoformat code"
title: "chore: Autoformat code"
branch: "autoformat-code"
delete-branch: true