From af36cba0166364d3fd559af2d3c0e71cdf13badc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Str=C3=BCbing?= Date: Fri, 14 Aug 2026 07:42:33 +0000 Subject: [PATCH] disable claude code co-author commit info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #3010 disabled Copilot's co-author trailer via .github/copilot/settings.json, but includeCoAuthoredBy is a Copilot-specific key. Contributors using Claude Code still get Co-Authored-By trailers, so the steering committee guidance is only half applied. Set attribution.commit and attribution.pr to empty strings, which suppresses both the commit trailer and the byline Claude Code adds to PR bodies. sessionUrl: false drops the claude.ai session link appended to commits and PRs created from web sessions. Signed-off-by: Max StrĂ¼bing --- .claude/settings.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 00000000000..381e5affd56 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,7 @@ +{ + "attribution": { + "commit": "", + "pr": "", + "sessionUrl": false + } +}