From 87f2d4b7935f46122627929073eb87ff655a7266 Mon Sep 17 00:00:00 2001 From: David Booke Date: Thu, 13 Aug 2026 08:07:14 -0500 Subject: [PATCH 1/2] Update PR template --- pr_templates/dbt_modeling_pr.md | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/pr_templates/dbt_modeling_pr.md b/pr_templates/dbt_modeling_pr.md index c153f54..dfcf5a6 100644 --- a/pr_templates/dbt_modeling_pr.md +++ b/pr_templates/dbt_modeling_pr.md @@ -2,15 +2,38 @@ _Summarize the goal of your work and what motivated it._ ## Key changes -- _Describe major updates._ -- _If the PR creates or renames models or adds references between models, paste a screenshot of the relevant parts of the lineage graph._ +- _Describe major updates. If multiple models or layers of models are added or updated, break up those layers/models into subheaders within this section._ +- _If applicable, include a screenshot of the affected parts of the lineage graph._ + +## Validation +- _Describe the validation process underwent to validate the changes_ +- _If applicable, include any validation queries or dbt execution commands completed_ + +
+ SQL validation queries + + Paste your SQL queries here + ``` + select * from table + ``` + +
+ +## Areas for reviewers to focus on +- _Highlight any outstanding questions related to your PR or any parts you'd like reviewers to take a closer look at_ + +## Future considerations +- _Call out any TODOs, known limitations, technical debt, or improvements you'd like to make at a later date_ + +## Deployment Notes +- _Specify any deployment notes or downstream impacts reviewers should be aware of_ ## Other notes -- _List open questions and other things your reviewer should know._ +- _List any other notes that don't fit into any of the above sections_ ## Related links - _List links to related ticket(s)._ -- _(optional) Link to other files and resources, such as specific related reports in a BI tool._ +- _(optional) Link to other files and resources, such as specific related reports in a BI tool or documentation._ ## Checklist - [ ] All models, whether directly changed by this PR or not, run successfully. From efa60ca61b55b6b1bb6abfb1ccc1e6e44ca85f1c Mon Sep 17 00:00:00 2001 From: David Booke Date: Fri, 14 Aug 2026 16:26:04 -0500 Subject: [PATCH 2/2] Update language about validation queries --- pr_templates/dbt_modeling_pr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_templates/dbt_modeling_pr.md b/pr_templates/dbt_modeling_pr.md index dfcf5a6..3ef1972 100644 --- a/pr_templates/dbt_modeling_pr.md +++ b/pr_templates/dbt_modeling_pr.md @@ -7,7 +7,7 @@ _Summarize the goal of your work and what motivated it._ ## Validation - _Describe the validation process underwent to validate the changes_ -- _If applicable, include any validation queries or dbt execution commands completed_ +- _If dbt models were added or updated in this PR, include the queries below used to validate those changes_
SQL validation queries