From 01df45f1e11ff93405057f278289700c0f9fc102 Mon Sep 17 00:00:00 2001 From: CaCO3 Date: Sun, 5 Feb 2023 20:27:02 +0100 Subject: [PATCH] disable committing changelog on release --- .github/workflows/build.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d620dc00..77a2c8bb 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -358,15 +358,15 @@ jobs: files: | release/* - # Commit&Push Changelog to master branch. Must be manually merged back to rolling - - name: Commit changes and push changes - if: startsWith(github.ref, 'refs/tags/') - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git add Changelog.md - git commit Changelog.md -m "Update Changelog.md for ${{github.event.inputs.versionIncrement}} release" - git push origin HEAD:master +# # Commit&Push Changelog to master branch. Must be manually merged back to rolling +# - name: Commit changes and push changes +# if: startsWith(github.ref, 'refs/tags/') +# run: | +# git config user.name github-actions +# git config user.email github-actions@github.com +# git add Changelog.md +# git commit Changelog.md -m "Update Changelog.md for ${{github.event.inputs.versionIncrement}} release" +# git push origin HEAD:master #########################################################################################