mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add issue_tracker_url to the galaxy template
There is an optional issue_tracker_url setting that can be set in meta/main.yml:galaxy_info. Include it in the generated template commented out so that it can be filled out if desired.
This commit is contained in:
parent
7c86db3187
commit
38e81083cd
1 changed files with 4 additions and 0 deletions
|
@ -48,6 +48,9 @@ galaxy_info:
|
||||||
author: {{ author }}
|
author: {{ author }}
|
||||||
description: {{description}}
|
description: {{description}}
|
||||||
company: {{ company }}
|
company: {{ company }}
|
||||||
|
# If the issue tracker for your role is not on github, uncomment the
|
||||||
|
# next line and provide a value
|
||||||
|
# issue_tracker_url: {{ issue_tracker_url }}
|
||||||
# Some suggested licenses:
|
# Some suggested licenses:
|
||||||
# - BSD (default)
|
# - BSD (default)
|
||||||
# - MIT
|
# - MIT
|
||||||
|
@ -656,6 +659,7 @@ def execute_init(args, options, parser):
|
||||||
author = 'your name',
|
author = 'your name',
|
||||||
company = 'your company (optional)',
|
company = 'your company (optional)',
|
||||||
license = 'license (GPLv2, CC-BY, etc)',
|
license = 'license (GPLv2, CC-BY, etc)',
|
||||||
|
issue_tracker_url = 'http://example.com/issue/tracker',
|
||||||
min_ansible_version = '1.2',
|
min_ansible_version = '1.2',
|
||||||
platforms = platform_groups,
|
platforms = platform_groups,
|
||||||
categories = categories,
|
categories = categories,
|
||||||
|
|
Loading…
Reference in a new issue