Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,18 @@ jobs:
- run: npm ci
- run: npm run changelog
- name: Commit and push changelog
env:
GIT_CONFIG_GLOBAL: /dev/null
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git config --global commit.gpgsign false
git config --global pull.rebase false
git config --global gpg.program ""
git config --global core.editor "true"
if [[ $(git status --porcelain) ]]; then
git add CHANGELOG.md
git commit -m "chore: update changelog [skip ci]"
git commit --no-gpg-sign -m "chore: update changelog [skip ci]"
git push origin HEAD:master
else
echo "No changes to commit"
Expand Down
Loading