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
47 changes: 0 additions & 47 deletions .github/scripts/cargo_manifest_guard.py

This file was deleted.

1 change: 0 additions & 1 deletion .github/scripts/check_release_boundary_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
"docs/pdfium-manual-setup.md",
"docs/release-artifact-notices.md",
"docs/RELEASE_OPERATOR_RUNBOOK.md",
".github/scripts/frozen_record_guards.json",
"packages/npm/ethos-pdf/package.json",
"packages/npm/ethos-pdf/vendor/manifest.json",
}
Expand Down
6 changes: 5 additions & 1 deletion .github/scripts/check_release_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,11 @@ def load_release_state(root: Path, path: Path) -> dict[str, object]:
github = _exact_keys(release["github_release"], GITHUB_RELEASE_KEYS, "release.github_release")
if github["version"] != version or github["tag"] != f"v{version}":
raise ReleaseStateError("GitHub release version and tag must match release.version")
if github["name"] != f"Release v{version}":
# Both conventions are published: v0.1.0-v0.1.2 and v0.3.0-v0.4.0 are "Release vX.Y.Z",
# v0.2.0 and v0.5.0 are "Ethos vX.Y.Z". Requiring one of them made the ledger declare a
# name the live release did not carry, which check_github_release_metadata.py catches
# against the registry. Enforce the version here; the live check owns the exact string.
if github["name"] not in (f"Release v{version}", f"Ethos v{version}"):
raise ReleaseStateError("GitHub release name must match release.version")
if github["latest"] is not True:
raise ReleaseStateError("the current GitHub release must be marked latest")
Expand Down
54 changes: 0 additions & 54 deletions .github/scripts/frozen_record_guard_wiring.py

This file was deleted.

4 changes: 0 additions & 4 deletions .github/scripts/frozen_record_guards.json

This file was deleted.

142 changes: 0 additions & 142 deletions .github/scripts/run_frozen_record_guards.py

This file was deleted.

53 changes: 0 additions & 53 deletions .github/scripts/test_rag_chunk_alpha.py

This file was deleted.

56 changes: 0 additions & 56 deletions .github/scripts/test_security_report_alpha.py

This file was deleted.

Loading
Loading