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
4 changes: 3 additions & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ jobs:
- run: npm ci
- run: npm run changelog
- name: Create changelog PR
env:
GH_TOKEN: ${{ github.token }}
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
# Create a new branch for the changelog
BRANCH_NAME="changelog-update-$(date +%Y%m%d-%H%M%S)"
Expand Down
Loading