From 2daa3cb170851fd0e28831d5d48c485af514b65e Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 6 Jun 2025 14:37:02 +0100 Subject: [PATCH 1/2] Bumping version to 7.1.4 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ad955e9..334b5ce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.1.3 \ No newline at end of file +7.1.4 \ No newline at end of file From e3c6acc3fd0311e6b9b9e2e79e6700b3a0d55de8 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 6 Jun 2025 14:37:11 +0100 Subject: [PATCH 2/2] Using GitHub CLI for auto PR --- .github/workflows/auto-pr.yml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index ae26510..54c3776 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -8,14 +8,11 @@ jobs: if: github.ref_type == 'branch' runs-on: ubuntu-latest steps: - - - name: Checkout Branch ${{ github.ref_name }} - uses: actions/checkout@v4 - - - name: Create Pull Request - uses: bfren/pull-request@v2 - with: - github_token: ${{ secrets.PAT }} - destination_branch: main - pr_title: ${{ github.ref_name }} - pr_body: "Merging branch to create ${{ github.ref_name }}." + - + name: Checkout Branch ${{ github.ref_name }} + uses: actions/checkout@v4 + - + name: Create Pull Request + run: gh pr create -B main --title "${{ github.ref_name }}" --body "Merging branch to create ${{ github.ref_name }}." + env: + GITHUB_TOKEN: ${{ secrets.PAT }}