File tree 5 files changed +48
-0
lines changed
5 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -28,3 +28,6 @@ test/cypress/videos/*
28
28
test /cypress.env.json
29
29
test /results
30
30
test /cypress /fixtures /example.json
31
+
32
+ # pycache files
33
+ * pyc
Original file line number Diff line number Diff line change
1
+ {# TOWNCRIER TEMPLATE #}
2
+ {% for section, _ in sections.items() %}
3
+ {% set underline = underlines[0] %}{% if section %}{{section}}
4
+ {{ underline * section|length }}{% set underline = underlines[1] %}
5
+
6
+ {% endif %}
7
+
8
+ {% if sections[section] %}
9
+ {% for category, val in definitions.items() if category in sections[section]%}
10
+ {{ definitions[category]['name'] }}
11
+ {{ underline * definitions[category]['name']|length }}
12
+
13
+ {% if definitions[category]['showcontent'] %}
14
+ {% for text, values in sections[section][category].items() %}
15
+ - {{ text }}
16
+ {{ values|join(',\n ') }}
17
+ {% endfor %}
18
+
19
+ {% else %}
20
+ - {{ sections[section][category]['']|join(', ') }}
21
+
22
+ {% endif %}
23
+ {% if sections[section][category]|length == 0 %}
24
+ No significant changes.
25
+
26
+ {% else %}
27
+ {% endif %}
28
+
29
+ {% endfor %}
30
+ {% else %}
31
+ No significant changes.
32
+
33
+
34
+ {% endif %}
35
+ {% endfor %}
36
+ ----
Original file line number Diff line number Diff line change
1
+ Create a changelog for the UI.
Original file line number Diff line number Diff line change
1
+ __version__ = "4.5.0dev"
Original file line number Diff line number Diff line change
1
+ [tool .towncrier ]
2
+ package = " ansible-hub-ui"
3
+ filename = " CHANGES.rst"
4
+ directory = " CHANGES/"
5
+ title_format = " {version} ({project_date})"
6
+ template = " CHANGES/.TEMPLATE.rst"
7
+ issue_format = " `AAH-{issue} <https://issues.redhat.com/browse/AAH-{issue}>`_"
You can’t perform that action at this time.
0 commit comments