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
19 changes: 14 additions & 5 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,18 @@ jobs:
token: ${{ github.token }}
tag: ${{ github.ref_name }}

- name: Commit CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v4
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
branch: master
commit_message: "docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]"
file_pattern: CHANGELOG.md
token: ${{ github.token }}
commit-message: "docs: update CHANGELOG.md for ${{ github.ref_name }}"
title: "docs: update CHANGELOG.md for ${{ github.ref_name }}"
body: |
Auto-generated changelog update for release ${{ github.ref_name }}.

This PR was automatically created by the changelog workflow.
branch: changelog/${{ github.ref_name }}
base: master
add-paths: CHANGELOG.md
labels: documentation,automated
delete-branch: true
Loading