Merge pull request 'Make Claude Code footer stripping more robust' (#25) from probablycorey/fix-claude-footer-strip into main
Some checks failed
CI / test (push) Has been cancelled

Reviewed-on: #25
This commit is contained in:
probablycorey 2026-03-11 21:06:51 +00:00
commit dbd94e7b37

View File

@ -112,8 +112,10 @@ class PRHandler {
}
static formatPrBody(pullRequest: Gitea.PullRequest, repositoryFullName: string): string {
// Strip the "🤖 Generated with Claude Code" footer that gets appended to PR bodies
const claudeFooter = /\n*🤖.*Claude Code[^\n]*$/
const body = (pullRequest.body || "_empty_")
.replace(/\n*🤖 Generated with \[Claude Code\].*$/s, "")
.replace(claudeFooter, "")
.trim() || "_empty_"
let message = `
> ### [${pullRequest.title}](<${pullRequest.html_url}>)