From d7a676512ca0b5157ee1d82291476950c907fc5b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 21:17:46 +0000 Subject: [PATCH 1/2] Initial plan From e9f8ad717662ae09a6d45e656618050d3b8fa820 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 21:19:27 +0000 Subject: [PATCH 2/2] Replace third-party release/PR actions with gh CLI commands Co-authored-by: brendandburns <5751682+brendandburns@users.noreply.github.com> --- .github/workflows/release.yml | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 11fd5502d6..a2aa4e0ad9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,15 +84,19 @@ jobs: git push https://${{ github.token }}@github.com/${{ github.repository }}.git v${{ github.event.inputs.releaseVersion }} - name: Pull Request if: ${{ github.event.inputs.dry-run != 'true' }} - uses: repo-sync/pull-request@v2 - with: - source_branch: automated-release-${{ github.event.inputs.releaseVersion }} - destination_branch: ${{ github.ref_name }} - github_token: ${{ secrets.PAT_TOKEN }} - pr_title: "Automated Release: ${{ github.event.inputs.releaseVersion }}" + env: + GH_TOKEN: ${{ secrets.PAT_TOKEN }} + run: | + gh pr create \ + --base ${{ github.ref_name }} \ + --head automated-release-${{ github.event.inputs.releaseVersion }} \ + --title "Automated Release: ${{ github.event.inputs.releaseVersion }}" \ + --body "" - name: Publish Release if: ${{ github.event.inputs.dry-run != 'true' }} - uses: ncipollo/release-action@v1 - with: - token: ${{ secrets.PAT_TOKEN }} - tag: v${{ github.event.inputs.releaseVersion }} + env: + GH_TOKEN: ${{ secrets.PAT_TOKEN }} + run: | + gh release create v${{ github.event.inputs.releaseVersion }} \ + --title "v${{ github.event.inputs.releaseVersion }}" \ + --generate-notes