From 90c2e7deb97331f28589055961f30ddfa59a5f64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mochol=C3=AD?= Date: Thu, 23 Nov 2023 04:45:12 +0100 Subject: [PATCH] Commit step --- .github/workflows/code-style-fix.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-style-fix.yml b/.github/workflows/code-style-fix.yml index 782585fe58..8bf8d48541 100644 --- a/.github/workflows/code-style-fix.yml +++ b/.github/workflows/code-style-fix.yml @@ -33,9 +33,14 @@ jobs: --target-version py38 --fix-only + - name: Commit files + run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git commit -a -m "Automated code-style fix." + - name: Fixing Pull Request 🛠️ uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ github.head_ref }} - message: "Automated code-style fix."