diff --git a/.changes/unreleased/DX-20260324-153805.yaml b/.changes/unreleased/DX-20260324-153805.yaml new file mode 100644 index 000000000..a1b22a054 --- /dev/null +++ b/.changes/unreleased/DX-20260324-153805.yaml @@ -0,0 +1,8 @@ +kind: DX +body: 'Changie: add a field for adding a release note tag when creating an entry in changie.' +time: 2026-03-24T15:38:05.320350835+01:00 +custom: + IRN: "No" + Issue: "" + MR: "" + SchemaChange: No schema change diff --git a/.changie.yaml b/.changie.yaml index 0bcab1f5b..0b441f118 100644 --- a/.changie.yaml +++ b/.changie.yaml @@ -7,7 +7,7 @@ versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}' kindFormat: '### {{.Kind}}' # Note: it is possible to add a `.custom.Long` text manually into the yaml file produced by `changie new`. This will add a long description. changeFormat: >- - * {{ if not (eq .Custom.Issue "") }}([#{{ .Custom.Issue }}](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/{{ .Custom.Issue }})) {{ end }}{{ if not (eq .Custom.MR "") }}([!{{ .Custom.MR }}](https://gitlab.com/Chill-Projet/chill-bundles/-/merge_requests/{{ .Custom.MR }})) {{ end }}{{ .Body }} {{ if and .Custom.SchemaChange (ne .Custom.SchemaChange "No schema change") }} + * {{ if not (eq .Custom.Issue "") }}([#{{ .Custom.Issue }}](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/{{ .Custom.Issue }})) {{ end }}{{ if not (eq .Custom.MR "") }}([!{{ .Custom.MR }}](https://gitlab.com/Chill-Projet/chill-bundles/-/merge_requests/{{ .Custom.MR }})) {{ end }}{{ .Body }} {{ if (eq .Custom.IRN "Yes") }}(RN){{ end }} {{ if and .Custom.SchemaChange (ne .Custom.SchemaChange "No schema change") }} **Schema Change**: {{ .Custom.SchemaChange }} {{- end -}} @@ -36,6 +36,14 @@ custom: type: int minInt: 1 + - key: IRN + label: Is this interesting for release notes ? + optional: false + type: enum + enumOptions: + - "No" + - "Yes" + body: # allow multiline messages block: true