From 2a3478f537e75da59565a6d6b81996fc5be6488a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 3 Jan 2026 05:55:44 +0000 Subject: [PATCH 1/3] Initial plan From 3b3a3c0c535362966978371591c966d5f60a7e5b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 3 Jan 2026 06:00:22 +0000 Subject: [PATCH 2/3] Add goreleaser check to CI workflow Co-authored-by: amitsaha <512598+amitsaha@users.noreply.github.com> --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 788c175..55f8a4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,3 +63,19 @@ jobs: with: name: testdata-windows path: testdata + + goreleaser_check: + runs-on: ubuntu-latest + name: GoReleaser Check + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-go@v5 + with: + go-version: '1.24' + - name: Run GoReleaser in snapshot mode + uses: goreleaser/goreleaser-action@v2 + with: + version: latest + args: --snapshot --skip=publish --clean From b3a4bbf8aa2d95a46f586a41404c5547fe9951fe Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 3 Jan 2026 06:02:27 +0000 Subject: [PATCH 3/3] Add explicit permissions to goreleaser_check job Co-authored-by: amitsaha <512598+amitsaha@users.noreply.github.com> --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55f8a4a..6700df2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,8 @@ jobs: goreleaser_check: runs-on: ubuntu-latest name: GoReleaser Check + permissions: + contents: read steps: - uses: actions/checkout@v4 with: