You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% if new_models or changed_or_downstream_incremental_models %}
3
+
{% if new_models or modified_or_downstream_incremental_models %}
4
4
### Checks/potential follow-ups
5
5
6
6
Checks indicate the following action items may be necessary.
7
7
{% if new_models -%}
8
8
-[ ] For new models, do they all have a surrogate primary key that is tested to be not-null and unique?
9
9
{%- endif %}
10
-
{% if changed_or_downstream_incremental_models -%}
10
+
{% if modified_or_downstream_incremental_models -%}
11
11
-[ ] For modified incremental models (or incremental models whose parents are modified), does the PR description identify whether a full refresh is needed for these tables?
12
12
{%- endif %}
13
13
{% endif %}
@@ -22,11 +22,11 @@ Checks indicate the following action items may be necessary.
22
22
{% endfor %}
23
23
{% endif %}
24
24
25
-
{% if changed_or_downstream_incremental_models %}
25
+
{% if modified_or_downstream_incremental_models %}
26
26
27
27
### Changed incremental models 🔀
28
28
29
-
{% for model in changed_or_downstream_incremental_models %}
29
+
{% for model in modified_or_downstream_incremental_models %}
30
30
{{ model }}
31
31
{% endfor %}
32
32
{% endif %}
@@ -37,11 +37,11 @@ Checks indicate the following action items may be necessary.
0 commit comments