From e1c2c0573713c2e5f36c44da7060e0a2af50cbec Mon Sep 17 00:00:00 2001 From: Mateo Jimenez Date: Sat, 15 Nov 2025 15:36:00 -0800 Subject: [PATCH] chore: Refactor changelog workflow to use a different pull request creation action Updated the changelog workflow to use peter-evans/create-pull-request@v7 and modified pull request details. --- .github/workflows/changelog.yml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index ff824c5..8ab62ac 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -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