From 54601594f14c0c88468f71794bc68e8c6429610a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Susa=C3=B1a?= Date: Wed, 12 Jun 2024 07:50:43 -0400 Subject: [PATCH] chore: fix lint action --- .github/workflows/lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 681a540..eec454b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,6 +34,7 @@ jobs: git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' git add . git commit -m "chore: apply formatting" - git push + git pull --rebase origin ${{ github.head_ref }} + git push origin HEAD:${{ github.head_ref }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}