From 9ff0f83af9c89f421c86edaf86a2cbb4c59d6bd8 Mon Sep 17 00:00:00 2001 From: proddy Date: Wed, 3 Dec 2025 22:06:06 +0100 Subject: [PATCH] remove obsolete double auto-commit --- .github/workflows/dev_release.yml | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/dev_release.yml b/.github/workflows/dev_release.yml index ad9e1fa0c..0eb0f329c 100644 --- a/.github/workflows/dev_release.yml +++ b/.github/workflows/dev_release.yml @@ -64,29 +64,7 @@ jobs: - name: Commit the generated files uses: stefanzweifel/git-auto-commit-action@v5 with: - commit_message: "chore: update generated files" - - - name: Configure Git - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - - - name: Check for changes and commit - run: | - if [ -n "$(git status --porcelain)" ]; then - echo "Changes detected, committing..." - git add . - git commit -m "Auto-commit build artifacts and configuration updates - - - Updated build configurations - - Generated build artifacts - - Version: ${{steps.build_info.outputs.VERSION}}" - - echo "Pushing changes to repository..." - git push origin dev - else - echo "No changes to commit" - fi + commit_message: "chore: update generated files for v${{steps.build_info.outputs.VERSION}}" - name: Create GitHub Release id: 'automatic_releases'