From 1d464fc82a1b5d9638c1abcb43d7a61d867c8efc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 30 Jan 2026 03:47:38 +0000 Subject: [PATCH 1/2] Initial plan From 9cf53a999fac29d165b103e46b18c218746db144 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 30 Jan 2026 03:52:32 +0000 Subject: [PATCH 2/2] Fix Go formatting in frontmatter_hash_stability_test.go Remove trailing whitespace on lines 210 and 217 to pass go fmt check. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/parser/frontmatter_hash_stability_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/parser/frontmatter_hash_stability_test.go b/pkg/parser/frontmatter_hash_stability_test.go index 1f266825b46..52f338a2492 100644 --- a/pkg/parser/frontmatter_hash_stability_test.go +++ b/pkg/parser/frontmatter_hash_stability_test.go @@ -207,14 +207,14 @@ Use env: ${{ env.TEST_VAR }} versions, hasVersions := parsed["versions"].(map[string]any) require.True(t, hasVersions, "Canonical JSON should include versions") - + // gh-aw version is only included for release builds if isReleaseVersion { assert.NotNil(t, versions["gh-aw"], "Should include gh-aw version for release builds") } else { assert.Nil(t, versions["gh-aw"], "Should not include gh-aw version for non-release builds") } - + // awf and agents versions should always be included assert.NotNil(t, versions["awf"], "Should include awf version") assert.NotNil(t, versions["agents"], "Should include agents version")