Files
pezkuwi-subxt/polkadot/scripts/ci/changelog/templates/template.md.tera
T
Mara Robin B 9fb96a7d2f improve wording of release notes (#5513)
* remove verbose 'refs/tags/' from changelog

* fix wording in pre_release changelog template

* improve migrations wording in changelog template

* fixup
2022-05-12 15:56:33 +02:00

39 lines
1.2 KiB
Plaintext

{# This is the entry point of the template -#}
<!-- repository: {{ polkadot.repository.name }} -->
{% include "pre_release.md.tera" -%}
{% if env.PRE_RELEASE == "true" -%}
This pre-release contains the changes from `{{ env.REF1 | replace(from="refs/tags/", to="") }}` to `{{ env.REF2 | replace(from="refs/tags/", to="") }}`.
{%- else -%}
This release contains the changes from `{{ env.REF1 | replace(from="refs/tags/", to="") }}` to `{{ env.REF2 | replace(from="refs/tags/", to="") }}`.
{% endif -%}
{%- set changes = polkadot.changes | concat(with=substrate.changes) -%}
{%- include "debug.md.tera" -%}
{%- set CML = "[C]" -%}
{%- set DOT = "[P]" -%}
{%- set SUB = "[S]" -%}
{# -- Manual free notes section -- #}
{% include "_free_notes.md.tera" -%}
{# --------------------------------- #}
{# -- Important automatic section -- #}
{% include "global_priority.md.tera" -%}
{% include "host_functions.md.tera" -%}
{% include "migrations-db.md.tera" -%}
{% include "migrations-runtime.md.tera" -%}
{# --------------------------------- #}
{% include "compiler.md.tera" -%}
{% include "runtimes.md.tera" -%}
{% include "changes.md.tera" -%}
{% include "docker_image.md.tera" -%}