Skip to content

Bump the action-packages group across 1 directory with 9 updates #87

Bump the action-packages group across 1 directory with 9 updates

Bump the action-packages group across 1 directory with 9 updates #87

Workflow file for this run

---
on:
push:
branches-ignore:
- main
permissions:
contents: write
jobs:
black:
permissions:
contents: write # for Git to git push
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
- name: Set up Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[formatting]
- name: Run black
run: |
black --line-length 120 .
- name: Commit changes
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "black auto commit" || true
git push