-
Notifications
You must be signed in to change notification settings - Fork 127
pipelines: extend command group #4231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
Collaborator
|
Commit: d4fbfad
29 interesting tests: 17 KNOWN, 7 RECOVERED, 4 flaky, 1 SKIP
Top 31 slowest tests (at least 2 minutes):
|
andrewnester
approved these changes
Jan 9, 2026
github-merge-queue bot
pushed a commit
that referenced
this pull request
Jan 9, 2026
## Changes Previously some workspace commands had empty "Permission Commands" section. Remove it because it isn't needed. ## Why Makes CLI output more readable and allows adding more groups that are hidden if unused. See #4231 ## Tests Add tests for "databricks secrets" output to show behaviour change
Collaborator
|
Commit: b4cc378
41 interesting tests: 13 KNOWN, 12 RECOVERED, 12 FAIL, 3 BUG, 1 SKIP
Top 50 slowest tests (at least 2 minutes):
|
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.
Changes
Extend 'pipelines' command group with commands from Pipelines CLI. The existing commands are moved into "Management Commands".
One exception is "stop" command that is present in both lists. We look into argument, and if it looks like pipeline_id, we interpret as "Management Command" calling Pipelines API, otherwise, we delegate into Pipelines CLI.
The change is backward-compatible, and doesn't change the behaviour existing of CI scripts that can rely on Databricks CLI.
In addition, until we declare this as shippable, the whole functionality is disabled and only visible with
ENABLE_PIPELINES_CLI=1environment variable set.Why
It allows using Pipelines CLI without installing "pipelines" command.
Tests
Acceptance tests.
As a follow-up existing acceptance tests for Pipelines CLI will be updated to test both Databricks CLI and Pipelines CLI.