Conversation
📬 CODENOTIFYThe following users are being notified based on files changed in this PR: @lszomoruMatched files:
|
There was a problem hiding this comment.
Pull request overview
This PR changes the Git extension’s git.addAICoAuthor setting so that AI co-author trailers are enabled by default, making the default behavior automatically add a Co-authored-by trailer when AI-generated code contributions are detected.
Changes:
- Updates
git.addAICoAuthorconfiguration default from"off"to"all".
Show a summary per file
| File | Description |
|---|---|
extensions/git/package.json |
Switches the default value of git.addAICoAuthor to enable AI co-author trailers by default. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 1
| ], | ||
| "scope": "resource", | ||
| "default": "off", | ||
| "default": "all", |
There was a problem hiding this comment.
The configuration schema default was changed to "all", but the runtime fallback in extensions/git/src/repository.ts still calls config.get('addAICoAuthor', 'off'). This is now out of sync and can lead to unexpected behavior in contexts where the contributed configuration defaults aren't loaded (e.g., some tests/hosts), and it makes the intended default unclear. Update the runtime fallback to match the schema default (or omit the fallback so the contributed default is used).
| "default": "all", | |
| "default": "off", |
Screenshot ChangesBase: Changed (3)blocks-ci screenshots changedReplace the contents of Updated blocks-ci-screenshots.md<!-- auto-generated by CI — do not edit manually -->
#### editor/codeEditor/CodeEditor/Dark

#### editor/codeEditor/CodeEditor/Light
 |
No description provided.