mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 02:37:59 +00:00
20 lines
445 B
Plaintext
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 %}
|