We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b575bb0 commit b3325b5Copy full SHA for b3325b5
.github/workflows/release.yml
@@ -30,10 +30,14 @@ jobs:
30
31
- name: Update CHANGELOG.md
32
run: |
33
+ git config --local user.email "github-actions[bot]@users.noreply.github.com"
34
+ git config --local user.name "github-actions[bot]"
35
+
36
echo "## $TAG_NAME - $(date +'%Y-%m-%d')" >> CHANGELOG.md
37
echo "" >> CHANGELOG.md
38
cat RELEASE_NOTES.md >> CHANGELOG.md
39
40
41
git add CHANGELOG.md
42
git commit -m "chore: update CHANGELOG.md for $TAG_NAME"
43
git push origin main
0 commit comments