Conversation
pkosiec
reviewed
Feb 17, 2026
8ffc3bd to
038c7b9
Compare
038c7b9 to
84093ed
Compare
84093ed to
eb2812d
Compare
pkosiec
approved these changes
Feb 17, 2026
Member
pkosiec
left a comment
There was a problem hiding this comment.
LGTM now, as a separate command it looks way better 👍
(disclaimer: just checked the code, didn't test it)
cmd/apps/manifest.go
Outdated
| ) | ||
|
|
||
| cmd := &cobra.Command{ | ||
| Use: "manifest", |
Member
There was a problem hiding this comment.
Hope people won't misunderstand the command as it has something to do with the app.yaml file? Pls consider template-manifest or whatever 😄 but maybe manifest is too generic?
eb2812d to
f0f2481
Compare
Collaborator
|
Commit: fc22f46
14 interesting tests: 6 FAIL, 6 SKIP, 1 KNOWN, 1 RECOVERED
Top 20 slowest tests (at least 2 minutes):
|
igrekun
reviewed
Feb 17, 2026
igrekun
approved these changes
Feb 17, 2026
a77f99b to
fc22f46
Compare
Collaborator
|
Commit: e8a3c51
33 interesting tests: 10 KNOWN, 9 flaky, 8 RECOVERED, 6 FAIL
Top 50 slowest tests (at least 2 minutes):
|
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.
Changes
We can now run
databricks apps manifestto obtain the manifest of a template (if --template is passed it will get it from that repository). When passing this, it will print the manifest json file so agents know how to build this appIt also allows passing branches of the specific repo
and it also shows an error if no manifest exists
Why
With the new plugin registry and resource dependency definition, we need agents to know how to build a specific app, so they can fetch the manifest easily with this command
Tests