Skip to content

Commit 16538ab

Browse files
Add template for bug reports (#410)
* Add template for bug reports * chore: auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d791c2a commit 16538ab

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
name: Bug report
3+
about: >
4+
Create a bug report. Ensure that it does reproduce on the main branch with
5+
python >=3.10. For anything else, please use the discussion link below.
6+
labels: bug, new
7+
---
8+
9+
<!--- Verify first that your issue is not already reported on GitHub -->
10+
<!--- Also test if the latest release and main branch are affected too -->
11+
12+
##### Summary
13+
14+
<!--- Explain the problem briefly below -->
15+
16+
##### Issue Type
17+
18+
- Bug Report
19+
20+
##### OS / ENVIRONMENT
21+
22+
<!--- Paste verbatim output between triple backticks -->
23+
24+
```console (paste below)
25+
python -c "import ansible_compat; print(ansible_compat.__version__)"
26+
```
27+
28+
<!--- Provide all relevant information below, e.g. target OS versions, network
29+
device firmware, etc. -->
30+
31+
- ansible installation method: one of source, pip, OS package
32+
- ansible-compat installation method: one of source, pip, OS package
33+
34+
##### STEPS TO REPRODUCE
35+
36+
<!--- Describe exactly how to reproduce the problem, using a minimal test case -->
37+
38+
<!--- Paste example playbooks or commands between triple backticks below -->
39+
40+
```console (paste below)
41+
42+
```
43+
44+
<!--- HINT: You can paste gist.github.com links for larger files -->
45+
46+
##### Desired Behavior
47+
48+
<!--- Describe what you expected to happen when running the steps above -->
49+
50+
Possible security bugs should be reported via email to `[email protected]`
51+
52+
##### Actual Behavior
53+
54+
<!--- Describe what happened. If possible run with extra verbosity (-vvvv) -->
55+
56+
Please give some details of what is happening. Include a [minimum
57+
complete verifiable example].
58+
59+
<!--- Paste verbatim command output between triple backticks -->
60+
61+
```paste below
62+
63+
```
64+
65+
[minimum complete verifiable example]: http://stackoverflow.com/help/mcve

0 commit comments

Comments
 (0)