From b5ac9c6a7a795a4dd33b9b16d0133131c03f8e38 Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Sat, 13 Jun 2026 11:52:22 +1000 Subject: [PATCH 1/3] ci: trigger on PRs to main and release tags Day-to-day work happens on feature/embedded-go-mcp; checks run when a PR to main is raised, and on v* tags for releases. Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40e0037..83a7b60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,11 +1,12 @@ name: ci +# Work happens on long-lived feature branches (feature/embedded-go-mcp); +# CI runs on PRs to main and on release tags. on: - push: - branches: [main] - tags: ['v*'] pull_request: branches: [main] + push: + tags: ['v*'] permissions: contents: read From 89542d8275a14dd577b507f01d78682dc37291ee Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Sat, 13 Jun 2026 11:52:41 +1000 Subject: [PATCH 2/3] ci: bump actions/checkout to v6 Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83a7b60..1327a81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-go@v5 with: From 68b79a994789c27b963970f473d4fc86b5725259 Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Sat, 13 Jun 2026 11:54:26 +1000 Subject: [PATCH 3/3] ci updates --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1327a81..4b063ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: '1.25'