Skip to content

Commit

Permalink
ci(release): add commit step to update-changelog branch (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
samikachai authored Dec 17, 2024
1 parent d70db64 commit 9e38e8c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ jobs:
else
echo "Tag ## $TARGET_TAG not found in $FILE."
fi
- name: Commit changelog changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git checkout -b update-changelog
git add --all
git commit -m "chore: update changelog for $GITHUB_REF"
git push origin update-changelog
- name: Create a Pull Request to update the changelog file
uses: peter-evans/create-pull-request@v5
Expand Down

0 comments on commit 9e38e8c

Please sign in to comment.