Skip to content
Merged
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
1 change: 1 addition & 0 deletions scripts/sanitize_public.py
Original file line number Diff line number Diff line change
Expand Up @@ -1012,6 +1012,7 @@ def check_generated_manifest(repo_root: Path, generated_args: list[str]) -> list
"@cursor.com>",
)
),
"".join(("Co-authored-by: Cursor Agent <cursoragent", "@cursor.com>")),

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Sanitize this commit's own metadata before allowlisting the trailer

On the push, schedule, and manual contexts inspected in .github/workflows/sanitization.yml, this addition still cannot make --tracked --history pass for the reviewed commit: _scan_public_history_metadata compares the complete finding line against this exact string, while commit 7999348c has the unallowlisted author/committer Codex <codex@openai.com>, backtick-wrapped and composite body lines containing the Cursor address, and a footer UUID. Directly scanning its metadata produces six HISTORY_META findings, so the push-time sanitization job remains broken even though the test plan passed against the different 642ab6e commit; recreate the commit with scan-clean metadata or explicitly handle every intended literal.

Useful? React with 👍 / 👎.

"".join(
(
"Co-authored-by: John Osumi <sumitake",
Expand Down
Loading