Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/trusted-workflow-source-rollforward.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { readFileSync } from "node:fs";
import { describe, expect, it } from "vitest";

const auditedCentralWorkflowSourceSha =
"6a79f075d62b5f8dcfef6145960f1c42c147f273";
"fce028b4c3bf8e2e5e4819c1c5622e90cfa6ab39";

describe("trusted central workflow source revision", () => {
it("binds the deployed OIDC trust configuration to the audited central source commit", () => {
Expand Down
2 changes: 1 addition & 1 deletion wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ALLOWED_AUDIENCE = "cwl-noema-review"
ALLOWED_REPOSITORY_OWNER = "ContextualWisdomLab"
ALLOWED_WORKFLOW_REPOSITORY = "ContextualWisdomLab/.github"
ALLOWED_WORKFLOW_REF_PREFIX = "ContextualWisdomLab/.github/.github/workflows/noema-review.yml@refs/heads/main"
ALLOWED_WORKFLOW_SHA = "6a79f075d62b5f8dcfef6145960f1c42c147f273"
ALLOWED_WORKFLOW_SHA = "fce028b4c3bf8e2e5e4819c1c5622e90cfa6ab39"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: SHA roll-forward consistent across config and test

ALLOWED_WORKFLOW_SHA in wrangler.toml and the audited constant in trusted-workflow-source-rollforward.test.ts are updated to the same value. No stale references to the old SHA remain, and the new value is valid 40-char hex matching the readiness check in src/runtime-readiness.ts:175.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

GITHUB_API_BASE = "https://api.github.com"
GITHUB_APP_SLUG = "noema"
NOEMA_RATE_LIMIT_PER_MINUTE = "60"
Expand Down
Loading