package-lock: remove name to avoid breaking old dbt versions#2028
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.
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