Merge branch 'feature/interesting-release-note-changie' into 'master'

Add IRN field to Changie configuration for release note tagging

See merge request Chill-Projet/chill-bundles!976
This commit is contained in:
2026-03-24 14:45:00 +00:00
2 changed files with 17 additions and 1 deletions

View File

@@ -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

View File

@@ -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