mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-03-24 14:48:07 +00:00
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:
8
.changes/unreleased/DX-20260324-153805.yaml
Normal file
8
.changes/unreleased/DX-20260324-153805.yaml
Normal 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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user