chore: try to trigger this so it'll commit the changes

This commit is contained in:
Sekwah 2024-06-17 00:26:36 +01:00
parent 5cf398b72a
commit d6a3eebbb9

View File

@ -48,3 +48,14 @@ jobs:
extra_args: --all-files extra_args: --all-files
- uses: pre-commit-ci/lite-action@v1.0.2 - uses: pre-commit-ci/lite-action@v1.0.2
if: always() if: always()
- name: Commit pre-commit changes
if: github.event.action != 'pull_request'
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "chore: pre-commit changes" || echo "No changes to commit"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}