Skip to content

Commit

Permalink
Add step for commit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
edulauer authored Jul 29, 2024
1 parent a886997 commit a716a6e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/update_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,11 @@ jobs:
echo "## [${{ steps.get_latest_release.outputs.tag }}] - $(date +"%Y-%m-%d")" >> CHANGELOG.md
echo "${{ steps.get_release_notes.outputs.notes }}" >> CHANGELOG.md
echo "" >> CHANGELOG.md
- name: Commit and push changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
git add CHANGELOG.md
git commit -m 'Update CHANGELOG.md for ${{ steps.get_latest_release.outputs.tag }}'
git push origin HEAD:${{ github.ref }}

0 comments on commit a716a6e

Please sign in to comment.