Files
pezkuwi-subxt/polkadot/scripts/ci/changelog/templates/changes_runtime.md.tera
T
Mara Robin B c70834aa8d Update changelog templates to use new labels (#6585)
* Update changelog template to use new T labels

* update readme

* changelog gen: remove T6
2023-01-19 19:24:03 +00:00

20 lines
420 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 -%}
{%- if pr.meta.B.value == 0 -%}
{#- We skip silent ones -#}
{%- else -%}
{%- if pr.meta.T and pr.meta.T.value == 1 and not pr.title is containing("ompanion") %}
- {{ m_c::change(c=pr) }}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- endfor %}