Files
pezkuwi-subxt/scripts/ci/changelog/templates/changes_runtime.md.tera
T
Wilfried Kopp 2cb13a1a4f B7 and C9 fixes
2022-08-16 15:06:00 +02:00

20 lines
445 B
Plaintext

{%- import "change.md.tera" as m_c -%}
### Runtime
{#- The changes are sorted by merge date -#}
{% for pr in changes | sort(attribute="merged_at") -%}
{%- if pr.meta.B and pr.meta.X -%}
{%- if pr.meta.B.value == 0 -%}
{#- We skip silent ones -#}
{%- else -%}
{%- if pr.meta.B.value == 1 and pr.meta.X.value == 1 and not pr.title is containing("ompanion") %}
- {{ m_c::change(c=pr) }}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- endfor %}