mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 18:11:03 +00:00
0269532fa8
* Add templates * Add folder for local storage of the digests * Add first draft of the changelog scripts * Enable Audits in the change template * Fixes for Polkadot * Fix templating issue in case there is no high prio change * Fix Ruby setup * Remove shell * Fix chain names * Fix ENV * Fix how to get runtime * Fix runtime_dir * Fix context location * Pin changelogerator to a specific version
31 lines
798 B
Plaintext
31 lines
798 B
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 }}` to `{{ env.REF2 }}`.
|
|
{%- else -%}
|
|
This release contains the changes from `{{ env.REF1 }}` to `{{ env.REF2 }}`.
|
|
{% endif -%}
|
|
|
|
{%- set changes = polkadot.changes | concat(with=substrate.changes) -%}
|
|
{%- include "debug.md.tera" -%}
|
|
|
|
{%- set CML = "[C]" -%}
|
|
{%- set DOT = "[P]" -%}
|
|
{%- set SUB = "[S]" -%}
|
|
|
|
{% include "global_priority.md.tera" -%}
|
|
|
|
{% include "host_functions.md.tera" -%}
|
|
|
|
{% include "compiler.md.tera" -%}
|
|
|
|
{% include "migrations.md.tera" -%}
|
|
|
|
{% include "runtimes.md.tera" -%}
|
|
|
|
{% include "changes.md.tera" -%}
|
|
|
|
{% include "docker_image.md.tera" -%}
|