Skip to content

chore(deps): update dependency setuptools to v82 #139

chore(deps): update dependency setuptools to v82

chore(deps): update dependency setuptools to v82 #139

Workflow file for this run

name: PR Assistant (The Janitor)
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: write
pull-requests: write
jobs:
auto-fix:
runs-on: ubuntu-latest
if: false # github.actor != 'github-actions[bot]'
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install Ruff
run: pip install ruff
- name: Run Ruff Fix
run: ruff check --fix src/
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "style: auto-fix linting issues"
branch: ${{ github.head_ref }}
commit_user_name: github-actions[bot]
commit_user_email: github-actions[bot]@users.noreply.github.com