Skip to content

Commit 473480c

Browse files
Update and rename .github/BUG_REPORT.md to .github/ISSUE_TEMPLATE/bug_report.yml
Signed-off-by: LUIZ HAMILTON ROBERTO DA SILVA <[email protected]>
1 parent da92857 commit 473480c

2 files changed

Lines changed: 125 additions & 47 deletions

File tree

.github/BUG_REPORT.md

Lines changed: 0 additions & 47 deletions
This file was deleted.
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
name: "🕾️ Bug Report"
2+
description: "Help us improve by reporting issues clearly and completely."
3+
title: "[Bug] "
4+
labels:
5+
- "bug"
6+
- "needs-investigation"
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
🛠️ **Help us improve** by reporting issues clearly and completely.
13+
Please provide reproducible steps and include environment details.
14+
15+
- type: textarea
16+
id: bug_description
17+
attributes:
18+
label: "🐛 Describe the bug"
19+
description: "Clearly describe the problem, including observed behavior and impact."
20+
placeholder: "What happened? What is the impact?"
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: steps_to_reproduce
26+
attributes:
27+
label: "🚪 Steps to reproduce"
28+
description: "Provide clear steps so we can reproduce the issue."
29+
placeholder: |
30+
1) Go to '...'
31+
2) Click on '...'
32+
3) Scroll down to '...'
33+
4) See the error
34+
validations:
35+
required: true
36+
37+
- type: textarea
38+
id: expected_behavior
39+
attributes:
40+
label: "📊 Expected behavior"
41+
description: "What did you expect to happen instead?"
42+
placeholder: "Describe the expected behavior."
43+
validations:
44+
required: true
45+
46+
- type: textarea
47+
id: actual_behavior
48+
attributes:
49+
label: "📉 Actual behavior / error output"
50+
description: "Paste the exact error message/output. Attach logs/screenshots if needed."
51+
placeholder: |
52+
Error output:
53+
- ...
54+
55+
Logs (redacted):
56+
- ...
57+
validations:
58+
required: false
59+
60+
- type: input
61+
id: operating_system
62+
attributes:
63+
label: "🌐 Operating System"
64+
placeholder: "Windows 11 / Windows Server 2022 / Ubuntu runner / etc."
65+
validations:
66+
required: true
67+
68+
- type: input
69+
id: powershell_version
70+
attributes:
71+
label: "🧾 PowerShell Version"
72+
placeholder: "5.1.x / 7.3.x / 7.4.x"
73+
validations:
74+
required: false
75+
76+
- type: input
77+
id: affected_tool
78+
attributes:
79+
label: "🧰 Affected script or tool path"
80+
description: "Provide the repository-relative path to the script/tool."
81+
placeholder: "SysAdmin-Tools/.../ToolName.ps1"
82+
validations:
83+
required: false
84+
85+
- type: textarea
86+
id: environment_details
87+
attributes:
88+
label: "🔧 Environment details (optional)"
89+
description: "Module versions, domain context, network setup, dependencies, runner/host info."
90+
placeholder: |
91+
- Module versions:
92+
- Domain/forest context:
93+
- Network/VPN:
94+
- Execution method (GUI/GPO/manual):
95+
- Anything else relevant:
96+
validations:
97+
required: false
98+
99+
- type: textarea
100+
id: additional_context
101+
attributes:
102+
label: "📃 Additional context"
103+
description: "Anything else that helps reproduce or understand the issue."
104+
placeholder: "Add any relevant context here."
105+
validations:
106+
required: false
107+
108+
- type: textarea
109+
id: possible_fix
110+
attributes:
111+
label: "💡 Possible fix (optional)"
112+
description: "If you already know what might fix it, describe it."
113+
placeholder: "Suggested fix or approach..."
114+
validations:
115+
required: false
116+
117+
- type: checkboxes
118+
id: confirmations
119+
attributes:
120+
label: "✅ Confirmations"
121+
options:
122+
- label: "I confirm I removed or redacted secrets (passwords, tokens, private keys) from logs/screenshots."
123+
required: true
124+
- label: "I confirm this is not a security vulnerability (use the Security Advisory link for private reports)."
125+
required: true

0 commit comments

Comments
 (0)