Add configuration repository support to darc add-channel #5666
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Implements configuration repository mode for
darc add-channelto add channels via git repository instead of API calls, mirroring the existingadd-subscriptionimplementation.Changes
Command Interface
AddChannelCommandLineOptionsnow inheritsConfigurationManagementCommandLineOptions, exposing:--configuration-repository- Target repo URI--configuration-branch- Working branch (auto-generated if unspecified)--configuration-base-branch- Base for PR creation--configuration-file- Override default file path--no-pr- Skip PR creation (commit only)DARC_USE_CONFIGURATION_REPOSITORYenvironment variableCore Implementation
AddChannelOperationchecks for existing channels in API before committing (prevents duplicates during transition)ConfigurationRepositoryManager.AddChannelAsynchandles:ChannelYamlComparerorderingTesting
AddChannelOperationConfigRepoTestsvalidates file creation, append behavior, duplicate detection (API and YAML), and YAML formatConfigurationManagementTestBasewith real git repo (not mocked)Usage
API mode remains default (backward compatible). Configuration mode creates/updates files at
configuration/channels/{normalized-name}.yml.Original prompt
darc add-channelwork with the new configuration repo #5500💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.