Skip to content
Snippets Groups Projects
Commit df9ab3c1 authored by Chevdor's avatar Chevdor Committed by GitHub
Browse files

Skip runtime migrations for the client release (#1116)

Also removes a bunch of empty lines for a nice output
parent 108d1582
Branches
No related merge requests found
......@@ -25,7 +25,6 @@
{%- set audit = "" -%}
{%- endif -%}
#}
{%- if c.html_url is containing("polkadot") -%}
{%- set repo = dot -%}
{%- elif c.html_url is containing("cumulus") -%}
......@@ -35,11 +34,11 @@
{%- else -%}
{%- set repo = " " -%}
{%- endif -%}
{# #}
{%- if c.meta.T and c.meta.T.value == 6 -%}
{%- set xcm = " [✉️ XCM]" -%}
{%- else -%}
{%- set xcm = "" -%}
{%- endif -%}
{{- repo }} {{ audit }}[`#{{c.number}}`]({{c.html_url}}) {{- prio }} - {{ c.title | capitalize | truncate(length=60, end="…") }}{{xcm }}
{%- endmacro change -%}
{%- endmacro change %}
{%- set to_ignore = changes | filter(attribute="meta.B.value", value=0) %}
<!--
## Debug
......
{%- import "change.md.tera" as m_c -%}
{%- set_global host_fn_count = 0 -%}
{# We loop first to count the number of host functions but we do not display anything yet #}
......
......@@ -18,22 +18,19 @@ This release contains the changes from `{{ env.REF1 }}` to `{{ env.REF2 }}`.
{# We check for host function first because no matter what the priority is, #}
{# we will force it to HIGH if at least one host function was detected. #}
{% include "host_functions.md.tera" -%}
{% include "host_functions.md.tera" -%}
{% include "global_priority.md.tera" -%}
{% include "compiler.md.tera" -%}
{% include "migrations-db.md.tera" -%}
{% include "migrations-runtime.md.tera" -%}
{% if env.RELEASE_TYPE and env.RELEASE_TYPE == "client" %}
<!-- skipping runtime data for RELEASE_TYPE = {{ env.RELEASE_TYPE }} -->
{% else %}
{% include "migrations-runtime.md.tera" -%}
{% include "runtimes.md.tera" -%}
{% endif %}
{% include "changes.md.tera" -%}
{% include "docker_image.md.tera" -%}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment