From 3ede1630823f8042d3db351e5ea60fc8a15b75a7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 07:21:31 +0000 Subject: [PATCH 1/2] Initial plan From e3b57e7f32dcba9fbd70bbf0f2dfb3f55d0dce70 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 07:24:20 +0000 Subject: [PATCH 2/2] fix: release workflow always checks out and commits to main branch Co-authored-by: ThePlenkov <6381507+ThePlenkov@users.noreply.github.com> --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d41c3687..e51d21e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,6 +49,7 @@ jobs: uses: actions/checkout@v6 with: fetch-depth: 0 + ref: main token: ${{ secrets.GITHUB_TOKEN }} - name: Setup Node.js @@ -93,7 +94,7 @@ jobs: - name: Push commit and tags if: ${{ !inputs.dry_run }} run: | - git push origin HEAD + git push origin HEAD:main git push --tags - name: Get latest tag