feat [cli-cicd integration]: Introduce deploy command#177
Closed
aviatco wants to merge 2 commits intomicrosoft:mainfrom
Closed
feat [cli-cicd integration]: Introduce deploy command#177aviatco wants to merge 2 commits intomicrosoft:mainfrom
aviatco wants to merge 2 commits intomicrosoft:mainfrom
Conversation
added 2 commits
February 19, 2026 12:17
ayeshurun
reviewed
Feb 19, 2026
ayeshurun
reviewed
Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
📥 Pull Request
✨ Description of new changes
This pull request introduces a new
deploycommand skeleton, allowing users to deploy items to a Fabric workspace using Fabric CI/CD lib, leverage Fabric CI/CD capabilities and relaying on configuration file.NOTE - the actual integration is not part of this PR
The changes include updates to the command registration, parser setup, and supporting logic to handle deployment flows. Below are the most important changes grouped by theme:
New Deploy Command Integration
fab_fs_deploy.pythat implements the deployment logic, including confirmation handling and delegation to the config-based deploy function.deploycommand in the CLI parser setup viaregister_deploy_parser, ensuring it is available as a subcommand.fab_fs.pyto import and route thedeploy_command, which handles context and exception management for deployment operations. [1] [2]Command-Line Interface Enhancements
register_deploy_parserfunction to define arguments and usage examples for thedeploycommand, supporting config file, environment, parameters, and force options.deploycommand infab_constant.pyto improve CLI help and documentation.Supporting Deployment Logic
deploy_with_config_filefunction to encapsulate the deployment flow using config file and environment parameters, providing user feedback during execution.