From 36e401b642a4a4fcca19edc82865dc78bb8c2a01 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Jun 2025 00:21:38 +0000 Subject: [PATCH 1/2] chore(deps): bump stefanzweifel/git-auto-commit-action Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 5.1.0 to 6.0.0. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v5.1.0...v6.0.0) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/black.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml index 5d6483a..62dc30a 100644 --- a/.github/workflows/black.yaml +++ b/.github/workflows/black.yaml @@ -16,6 +16,6 @@ jobs: version: "24.10.0" - name: Auto commit - uses: stefanzweifel/git-auto-commit-action@v5.1.0 + uses: stefanzweifel/git-auto-commit-action@v6.0.0 with: commit_message: "style: ci lint with `black`" From 2faa15af5f8bfdac356cfd873a226a093c20efc0 Mon Sep 17 00:00:00 2001 From: Gosuto Inzasheru Date: Wed, 11 Jun 2025 11:12:03 +0200 Subject: [PATCH 2/2] ci: explicitly checkout pr branch --- .github/workflows/black.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml index 62dc30a..bb4f04f 100644 --- a/.github/workflows/black.yaml +++ b/.github/workflows/black.yaml @@ -8,6 +8,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} - name: Black uses: psf/black@stable