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: 6 additions & 13 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,12 @@ jobs:
git-push: 'false'

- name: Create Pull Request
# This step only runs if the changelog action created a new version
if: steps.changelog.outputs.skipped == 'false'
uses: misha-brt/create-pull-request@v0.0.1
uses: peter-evans/create-pull-request@v7
with:

github_token: ${{ secrets.GITHUB_TOKEN }}

# The name of the new branch to create
branch: 'changelog/release-v${{ steps.changelog.outputs.version }}'

head: ${{ github.ref }}
# The branch to merge into
base: 'main'

# The title of the pull request
title: 'chore(release): v${{ steps.changelog.outputs.version }}'
title: 'Automated Changelog Pull Request (request made by peter-evans/create-pull-request@v7)'

body: 'Changelog update created by TriPSs/conventional-changelog-action@v5'

base: main
Loading