From f3a8c1045b3a5afc603f57d8ac591eb4e843dc0e Mon Sep 17 00:00:00 2001 From: joesturge Date: Sun, 28 Jul 2024 17:13:43 +0100 Subject: [PATCH] fix: use pr instead of automerge --- .github/workflows/tag.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index f2f3b21..0d765f3 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -33,6 +33,7 @@ jobs: permissions: contents: write + pull-requests: write steps: - name: Checkout repository @@ -58,7 +59,10 @@ jobs: draft: false prerelease: false - - uses: stefanzweifel/git-auto-commit-action@v5 + - name: Create Pull Request + uses: peter-evans/create-pull-request@v6 with: - commit_message: "[ci-skip] release: ${{ github.ref }}" - branch: master + title: Release ${{ github.ref }} + branch: release/${{ github.ref }} + commit-message: "[ci skip] update changelog for ${{ github.ref }}" + body: This PR was created by the release workflow.