From e49cb75422b11ddb59555720c741bfc0ea534b1f Mon Sep 17 00:00:00 2001 From: Johannes Eschrig Date: Thu, 13 Nov 2025 10:18:30 +0100 Subject: [PATCH] build: simplify brew action --- .github/workflows/update-brew-cask.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/update-brew-cask.yml b/.github/workflows/update-brew-cask.yml index bdf2bf1..354a63f 100644 --- a/.github/workflows/update-brew-cask.yml +++ b/.github/workflows/update-brew-cask.yml @@ -127,17 +127,13 @@ jobs: EOF - - name: Configure Git + - name: Commit to Git if: steps.update.outputs.needs_update == 'true' run: | - git config --local user.email "action@github.com" + git config --local user.email "github-action@sap.com" git config --local user.name "GitHub Action" - - - name: Commit changes - if: steps.update.outputs.needs_update == 'true' - run: | git add Casks/cap-console.rb - git commit -m "Update CAP Console to version ${{ steps.update.outputs.new_version }}" + git commit -m "Update Cask CAP Console to version ${{ steps.update.outputs.new_version }}" - name: Create Pull Request if: steps.update.outputs.needs_update == 'true'