Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
tails
tails
Commits
cc208964
Commit
cc208964
authored
Aug 24, 2020
by
intrigeri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changelog.jinja2: add newlines for nicer formatting if rendered as Markdown
parent
3700dc60
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
config/release_management/templates/changelog.jinja2
config/release_management/templates/changelog.jinja2
+2
-0
No files found.
config/release_management/templates/changelog.jinja2
View file @
cc208964
...
@@ -6,12 +6,14 @@ tails ({{version}}) unstable; urgency=medium
...
@@ -6,12 +6,14 @@ tails ({{version}}) unstable; urgency=medium
{% set mr_desc = mr.title + " (" + mr.ref + ")" %}
{% set mr_desc = mr.title + " (" + mr.ref + ")" %}
* {{ mr_desc|wordwrap(wrapstring="\n ")}}
* {{ mr_desc|wordwrap(wrapstring="\n ")}}
{% if mr.closes_issues %}
{% if mr.closes_issues %}
Closes issues:
Closes issues:
{% for issue in mr.closes_issues %}
{% for issue in mr.closes_issues %}
{% set issue_desc = issue.title + " (" + issue.ref + ")" %}
{% set issue_desc = issue.title + " (" + issue.ref + ")" %}
- {{ issue_desc|wordwrap(wrapstring="\n ") }}
- {{ issue_desc|wordwrap(wrapstring="\n ") }}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
Commits:
Commits:
{% for commit_message in mr.commit_messages %}
{% for commit_message in mr.commit_messages %}
- {{ commit_message|wordwrap(wrapstring="\n ") }}
- {{ commit_message|wordwrap(wrapstring="\n ") }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment