generated from trfore/ansible-role
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
84 additions
and
60 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
assignees: | ||
- trfore | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: yaml-playbook | ||
attributes: | ||
label: Relevant code or playbook | ||
description: Please copy and paste any relevant code / playbook. This will be automatically formatted into YAML, so no need for backticks. | ||
render: yaml | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
- type: textarea | ||
id: ansible-version | ||
attributes: | ||
label: Ansible version | ||
description: What version of Ansible, Molecule, and Python? (Please paste the output from `ansible --version && molecule --version && python --version`) | ||
placeholder: "Example: ansible-core 2.10.0, python 3.8" | ||
- type: input | ||
id: control-node | ||
attributes: | ||
label: Control node OS | ||
description: What OS is the Ansible controller running on? | ||
placeholder: "Ubuntu 22.04" | ||
- type: input | ||
id: target-node | ||
attributes: | ||
label: Target node OS | ||
description: What OS are you targeting in the plays? | ||
placeholder: "CentOS 8" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: "[Feature]: " | ||
labels: ["enhancement"] | ||
assignees: | ||
- trfore | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to suggest new features! | ||
- type: textarea | ||
id: problem-statement | ||
attributes: | ||
label: General problem or idea | ||
description: Is your feature request related to a problem? Please describe. | ||
placeholder: "Example: I'm always frustrated when ..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution-statement | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. | ||
- type: textarea | ||
id: alternative-solutions | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the feature request. |