From 91b2c6cb8c175c0b0286e9b423c83fb33b631b8f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 21:07:25 +0000 Subject: [PATCH 1/2] Initial plan From ce2fcccf6cc927b1b48c445ebb77c99c49bbca6c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 21:13:04 +0000 Subject: [PATCH 2/2] Fix test hash: update expected Go hash to match current workflow Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- actions/setup/js/frontmatter_hash_github_api.test.cjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/setup/js/frontmatter_hash_github_api.test.cjs b/actions/setup/js/frontmatter_hash_github_api.test.cjs index 44ef183f09a..461c7a23dd7 100644 --- a/actions/setup/js/frontmatter_hash_github_api.test.cjs +++ b/actions/setup/js/frontmatter_hash_github_api.test.cjs @@ -192,9 +192,9 @@ describe("frontmatter_hash with GitHub API", () => { // This hash was computed by the Go implementation: // go test -run TestHashWithRealWorkflow ./pkg/parser/ - // Output: "Hash for audit-workflows.md: bb5cbd9552401591e9476ae803f1736a88dca3f654f725dadffa5a7dbc31d639" + // Output: "Hash for audit-workflows.md: 4d50f091b80261759bdbabc83490e5ed25d3ff07b5bf4a9c989d643f4c5a1a72" // Note: Hash changed when imports were migrated to use runtime-import macros - const goHash = "bb5cbd9552401591e9476ae803f1736a88dca3f654f725dadffa5a7dbc31d639"; + const goHash = "4d50f091b80261759bdbabc83490e5ed25d3ff07b5bf4a9c989d643f4c5a1a72"; // Verify JavaScript hash matches Go hash expect(jsHash).toBe(goHash);