mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve the issue template for dependency problems (#51657)
So many reports of missing modules could be solved more quickly with the info from `python_requirements_facts` Replace the legacy issue template with a link to the new interface
This commit is contained in:
parent
cbde04606a
commit
945ee39a89
2 changed files with 16 additions and 51 deletions
52
.github/ISSUE_TEMPLATE.md
vendored
52
.github/ISSUE_TEMPLATE.md
vendored
|
@ -1,51 +1 @@
|
||||||
<!--- Verify first that your issue is not already reported on GitHub -->
|
Please raise issues via the [new interface](https://github.com/ansible/ansible/issues/new/choose)
|
||||||
<!--- Also test if the latest release and devel branch are affected too -->
|
|
||||||
<!--- Complete *all* sections as described, this form is processed automatically -->
|
|
||||||
|
|
||||||
##### SUMMARY
|
|
||||||
<!--- Explain the problem briefly below -->
|
|
||||||
|
|
||||||
##### ISSUE TYPE
|
|
||||||
<!--- Pick one below and delete the rest -->
|
|
||||||
- Bug Report
|
|
||||||
- Feature Idea
|
|
||||||
- Documentation Report
|
|
||||||
|
|
||||||
##### COMPONENT NAME
|
|
||||||
<!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure -->
|
|
||||||
|
|
||||||
##### ANSIBLE VERSION
|
|
||||||
<!--- Paste verbatim output from "ansible --version" between quotes -->
|
|
||||||
```paste below
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
##### CONFIGURATION
|
|
||||||
<!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes -->
|
|
||||||
```paste below
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
##### OS / ENVIRONMENT
|
|
||||||
<!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. -->
|
|
||||||
|
|
||||||
##### STEPS TO REPRODUCE
|
|
||||||
<!--- Describe exactly how to reproduce the problem, using a minimal test-case -->
|
|
||||||
|
|
||||||
<!--- Paste example playbooks or commands between quotes below -->
|
|
||||||
```yaml
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
<!--- HINT: You can paste gist.github.com links for larger files -->
|
|
||||||
|
|
||||||
##### EXPECTED RESULTS
|
|
||||||
<!--- Describe what you expected to happen when running the steps above -->
|
|
||||||
|
|
||||||
##### ACTUAL RESULTS
|
|
||||||
<!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) -->
|
|
||||||
|
|
||||||
<!--- Paste verbatim command output between quotes -->
|
|
||||||
```paste below
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
15
.github/ISSUE_TEMPLATE/bug_report.md
vendored
15
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -30,6 +30,21 @@ about: Create a report to help us improve
|
||||||
##### OS / ENVIRONMENT
|
##### OS / ENVIRONMENT
|
||||||
<!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. -->
|
<!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. -->
|
||||||
|
|
||||||
|
##### DEPENDENCY PROBLEMS
|
||||||
|
<!--- If you're having problems with a Python library (e.g. you've installed a library but
|
||||||
|
Ansible is still telling you it's missing) add a task to the failing playbook:
|
||||||
|
|
||||||
|
```
|
||||||
|
- python_requirements_facts:
|
||||||
|
dependencies:
|
||||||
|
- $PROBLEM_LIBRARY (e.g. openshift, boto3, etc.)
|
||||||
|
```
|
||||||
|
|
||||||
|
-->
|
||||||
|
```paste below
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
##### STEPS TO REPRODUCE
|
##### STEPS TO REPRODUCE
|
||||||
<!--- Describe exactly how to reproduce the problem, using a minimal test-case -->
|
<!--- Describe exactly how to reproduce the problem, using a minimal test-case -->
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue