-
Notifications
You must be signed in to change notification settings - Fork 204
package-lock: remove name to avoid breaking old dbt versions #2028
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
package-lock: remove name to avoid breaking old dbt versions #2028
Conversation
|
👋 @haritamar |
|
Caution Review failedThe pull request is closed. WalkthroughRemoves explicit Changes
Sequence Diagram(s)Old vs new control flow for selecting the dbt package string in the workflow. sequenceDiagram
participant GH as GitHub Actions
participant Step as install-dbt step
participant Shell as Shell
rect rgb(230,245,255)
Note right of GH: Old flow — conditional databricks constraint
end
GH->>Step: trigger install step
Step->>Shell: evaluate warehouse-type and databricks flag
Shell-->>Step: if databricks -> package = "{warehouse-type}+databricks<1.10.2"
Shell-->>Step: else -> package = "{warehouse-type}{optional @version}"
Step->>GH: run pip install with package string
sequenceDiagram
participant GH as GitHub Actions
participant Step as install-dbt step
participant Shell as Shell
rect rgb(235,255,235)
Note right of GH: New flow — unified package spec
end
GH->>Step: trigger install step
Step->>Shell: evaluate warehouse-type
Shell-->>Step: package = "{warehouse-type}{optional @version}"
Step->>GH: run pip install with package string
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro Disabled knowledge base sources:
📒 Files selected for processing (1)
Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Disabled knowledge base sources:
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
.github/workflows/test-warehouse.yml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: test
- GitHub Check: code-quality
null
Summary by CodeRabbit