From db6b58c4b4e3f45feb411e4958b033fc7890598f Mon Sep 17 00:00:00 2001 From: Alan Plum Date: Wed, 15 May 2024 11:06:27 +0200 Subject: [PATCH] Don't use that action It's broken. --- .github/workflows/tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7c541195..1ff2649f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,7 +82,8 @@ jobs: with: fetch-depth: 0 token: ${{ secrets.GH_TOKEN }} - - uses: Embraser01/update-git-branch-action@v1.0.0 - with: - branch: stable - githubToken: ${{ secrets.GH_TOKEN }} + - run: | + git config --global user.name "GitHub Actions" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git fetch . HEAD:stable + git push -f origin stable