Update all non-major dependencies #1231
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Format Pixeebot PRs | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| apply-black: | |
| if: github.event.pull_request.user.login == 'pixeebot[bot]' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install black | |
| run: pip install black | |
| - name: Apply black formatting | |
| run: black . | |
| - name: Commit and push changes | |
| uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: ":art: Apply formatting" |