We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21950bd commit 9ac9345Copy full SHA for 9ac9345
2 files changed
roles/generate-jenkins/defaults/main.yml
@@ -61,3 +61,4 @@ build_armhf: false
61
image_provenance: true
62
image_sbom: true
63
image_builder: 'container'
64
+project_categories: ""
roles/generate-jenkins/templates/DOCUMENTATION.j2
@@ -4,6 +4,13 @@
4
{%- set has_latest= true if (development_versions == true and 'latest' in (development_versions_items | map(attribute="tag"))) or (development_versions == false) else false -%}
5
---
6
title: {{ project_name }}
7
+{% if project_categories %}
8
+tags:
9
+{% for tag in project_categories.split(",") %}
10
+ - {{ tag | title }}
11
+{% endfor %}
12
+{% endif %}
13
+description: "{{ noter(project_blurb) | trim }}"
14
15
{% include "README_SNIPPETS/DO_NOT_EDIT.j2" | trim %}
16
{% if project_deprecation_status %}
0 commit comments