mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 07:01:02 +00:00
Update changelog templates to use new labels (#6585)
* Update changelog template to use new T labels * update readme * changelog gen: remove T6
This commit is contained in:
@@ -44,10 +44,9 @@ Currently, the considered labels are:
|
|||||||
- E4 => new host function
|
- E4 => new host function
|
||||||
- E2 => database migration
|
- E2 => database migration
|
||||||
- B0 => silent, not showing up
|
- B0 => silent, not showing up
|
||||||
- B1-releasenotes (misc unless other labels)
|
- B1 => noteworthy
|
||||||
- B5-client (client changes)
|
- T0 => node
|
||||||
- B7-runtimenoteworthy (runtime changes)
|
- T1 => runtime
|
||||||
- T6-XCM
|
|
||||||
|
|
||||||
Note that labels with the same letter are mutually exclusive.
|
Note that labels with the same letter are mutually exclusive.
|
||||||
A PR should not have both `B0` and `B5`, or both `C1` and `C9`. In case of conflicts, the template will
|
A PR should not have both `B0` and `B5`, or both `C1` and `C9`. In case of conflicts, the template will
|
||||||
|
|||||||
@@ -33,10 +33,5 @@
|
|||||||
{%- set repo = " " -%}
|
{%- set repo = " " -%}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
||||||
{%- if c.meta.T and c.meta.T.value == 6 -%}
|
|
||||||
{%- set xcm = " [✉️ XCM]" -%}
|
|
||||||
{%- else -%}
|
|
||||||
{%- set xcm = "" -%}
|
|
||||||
{%- endif -%}
|
|
||||||
{{- repo }} {{ audit }}[`#{{c.number}}`]({{c.html_url}}) {{- prio }} - {{ c.title | capitalize | truncate(length=120, end="…") }}{{xcm }}
|
{{- repo }} {{ audit }}[`#{{c.number}}`]({{c.html_url}}) {{- prio }} - {{ c.title | capitalize | truncate(length=120, end="…") }}{{xcm }}
|
||||||
{%- endmacro change -%}
|
{%- endmacro change -%}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
{#- We skip silent ones -#}
|
{#- We skip silent ones -#}
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
|
|
||||||
{%- if pr.meta.B.value == 5 and not pr.title is containing("ompanion") %}
|
{%- if pr.meta.T and pr.meta.T.value == 0 and not pr.title is containing("ompanion") %}
|
||||||
- {{ m_c::change(c=pr) }}
|
- {{ m_c::change(c=pr) }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
{%- if pr.meta.B.value == 0 -%}
|
{%- if pr.meta.B.value == 0 -%}
|
||||||
{#- We skip silent ones -#}
|
{#- We skip silent ones -#}
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
{%- if pr.meta.B and pr.meta.B.value != 5 and pr.meta.B.value != 7 or pr.meta.C or not pr.meta.B %}
|
{%- if pr.meta.T and pr.meta.T.value == 0 %}
|
||||||
{%- set_global misc_count = misc_count + 1 -%}
|
{%- set_global misc_count = misc_count + 1 -%}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
@@ -27,7 +27,7 @@ There are other misc. changes. You can expand the list below to view them all.
|
|||||||
{%- if pr.meta.B.value == 0 %}
|
{%- if pr.meta.B.value == 0 %}
|
||||||
{#- We skip silent ones -#}
|
{#- We skip silent ones -#}
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
{%- if pr.meta.B and pr.meta.B.value != 5 and pr.meta.B.value != 7 or pr.meta.C or not pr.meta.B %}
|
{%- if pr.meta.T and pr.meta.T.value == 0 %}
|
||||||
- {{ m_c::change(c=pr) }}
|
- {{ m_c::change(c=pr) }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
{#- We skip silent ones -#}
|
{#- We skip silent ones -#}
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
|
|
||||||
{%- if pr.meta.B.value == 7 and not pr.title is containing("ompanion") %}
|
{%- if pr.meta.T and pr.meta.T.value == 1 and not pr.title is containing("ompanion") %}
|
||||||
- {{ m_c::change(c=pr) }}
|
- {{ m_c::change(c=pr) }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ The changes motivating this priority level are:
|
|||||||
{%- if pr.meta.C -%}
|
{%- if pr.meta.C -%}
|
||||||
{%- if pr.meta.C.value == p %}
|
{%- if pr.meta.C.value == p %}
|
||||||
- {{ m_c::change(c=pr) }}
|
- {{ m_c::change(c=pr) }}
|
||||||
{%- if pr.meta.B and pr.meta.B.value == 7 %} (RUNTIME)
|
{%- if pr.meta.T and pr.meta.T.value == 1 %} (RUNTIME)
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|||||||
Reference in New Issue
Block a user