From cda06db36715280bd87b6328dbe5f9d42bfa3b68 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 28 Aug 2023 13:21:54 +0200 Subject: [PATCH] gci: Fix wrong guard on rebase step --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a2a437084..849edbe74 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,7 @@ jobs: - name: Rebase # We can't rebase if we're on master already. - if: github.ref == 'refs/heads/master' + if: github.ref != 'refs/heads/master' run: | git config user.name github-actions git config user.email github-actions@github.com