From 99ba89fd7ea4f1ce667a2345c815bc949ebafc7d Mon Sep 17 00:00:00 2001 From: Ira Miller Date: Tue, 12 Sep 2023 15:41:03 -0600 Subject: [PATCH] update changelog workflow to commit from branch --- .github/workflows/changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 460a6dd52f..9cb25d98ae 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -36,8 +36,9 @@ jobs: git_user_signingkey: true git_commit_gpgsign: true - - name: Sign commit and push changes - run: | - git add ./CHANGELOG.md - git commit -S -m "Updated Changelog" - git push + # This step is required for committing the changes to your branch. + # See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs + - uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_options: "-S" + commit_message: "Updated Changelog"