From b22b1e1b07a0091fb8c019aeb4f9d4ff9d959a78 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 02:06:58 +0000 Subject: [PATCH 1/2] Initial plan From 77e4e1151d7fbcb493abdb7b02e75f7621067bc7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 02:11:36 +0000 Subject: [PATCH 2/2] Fix duplicate release workflow runs by skipping github-actions bot commits Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7de09c48..a0c557e4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,8 @@ jobs: name: Release runs-on: ubuntu-latest timeout-minutes: 10 + # Skip if the commit is from github-actions bot to prevent duplicate runs + if: github.actor != 'github-actions[bot]' && !contains(github.event.head_commit.message, 'Version Packages') steps: - name: Checkout Repo uses: actions/checkout@v3