fix(release): exclude RoboClaw from contributor credit (#124526)

This commit is contained in:
Peter Steinberger 2026-08-16 03:19:26 -07:00 committed by GitHub
parent 15a01bcc5e
commit 0c546979b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -32,6 +32,7 @@ const excludedHandles = new Set([
"claude",
"codex",
"hugin-bot",
"roboclaw-bot",
"steipete",
"steipete-oai",
]);

View file

@ -55,6 +55,7 @@ describe("release-note verification", () => {
expect(isEligibleHandle("steipete")).toBe(false);
expect(isEligibleHandle("steipete-oai")).toBe(false);
expect(isEligibleHandle("hugin-bot")).toBe(false);
expect(isEligibleHandle("roboclaw-bot")).toBe(false);
});
it("accepts only canonical commit PR suffixes", () => {