From 09ef2e2e7e98071fe461fada9ad12cb19cceb423 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Tue, 5 Aug 2025 14:01:22 +0200 Subject: [PATCH] ci: update create-pull-request action --- .github/workflows/covector-version-or-publish.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml index a731244..bce1f60 100644 --- a/.github/workflows/covector-version-or-publish.yml +++ b/.github/workflows/covector-version-or-publish.yml @@ -37,11 +37,13 @@ jobs: - name: Create Pull Request With Versions Bumped id: cpr - uses: tauri-apps/create-pull-request@v3 if: steps.covector.outputs.commandRan == 'version' + uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # 7.0.6 with: + token: ${{ secrets.GITHUB_TOKEN }} + branch: ci/pending-release title: "Publish New Versions" commit-message: "publish new versions" - labels: "version updates" - branch: "release" + labels: 'version updates' body: ${{ steps.covector.outputs.change }} + sign-commits: true