From a6d2751ec3d3b42563eb81ed9057234c1c89e127 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Tue, 20 Jun 2023 23:02:59 +0200 Subject: [PATCH] ci: amend instead of commit for renovate upgrade --- .github/workflows/renovate-app-version.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/renovate-app-version.yml b/.github/workflows/renovate-app-version.yml index 02638b37..9bad2068 100644 --- a/.github/workflows/renovate-app-version.yml +++ b/.github/workflows/renovate-app-version.yml @@ -2,8 +2,8 @@ name: Update app version in Renovate Branches on: push: - branches: [ 'renovate/*' ] - + branches: ["renovate/*"] + jobs: update-app-version: runs-on: ubuntu-latest @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - + - name: Configure repo run: | git config --local user.email "githubaction@githubaction.com" @@ -33,7 +33,7 @@ jobs: ./.github/workflows/renovate-app-version.sh $app_name fi done - + - name: Commit & Push Changes run: | - git add "apps/*/config.json" && git commit -m "Update app version" --no-verify && git push || true + git add "apps/*/config.json" && git commit --amend --no-verify && git push || true