Skip to content

Commit 80e7e2f

Browse files
authored
[gh] Introducing new Issue Github Template Feature (Bug, Feature, Task) (#2394)
* Update bug_report.yml * Create feature_request.yml * Create task.yml * Update config.yml
1 parent 1789d18 commit 80e7e2f

File tree

4 files changed

+60
-2
lines changed

4 files changed

+60
-2
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "🐞 Script Issue Report"
22
description: Report a specific issue with a script. For other inquiries, please use the Discussions section.
3-
3+
labels: ["bug"]
44
body:
55
- type: markdown
66
attributes:

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ contact_links:
33
- name: 🤔 Questions and Help
44
url: https://github.com/community-scripts/ProxmoxVE/discussions
55
about: For suggestions or questions, please use the Discussions section.
6-
- name: 🌟 Feature request
6+
- name: 🌟 new Script request
77
url: https://github.com/community-scripts/ProxmoxVE/discussions/new?category=request-script
88
about: For feature/script requests, please use the Discussions section.
99
- name: 💻 Discord
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "✨ Feature Request"
2+
description: "Suggest a new feature or enhancement."
3+
labels: ["enhancement"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
# ✨ **Feature Request**
9+
Have an idea for a new feature? Share your thoughts below!
10+
11+
- type: input
12+
id: feature_summary
13+
attributes:
14+
label: "🌟 Briefly describe the feature"
15+
placeholder: "e.g., Add support for XYZ"
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: feature_description
21+
attributes:
22+
label: "📝 Detailed description"
23+
placeholder: "Explain the feature in detail"
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: use_case
29+
attributes:
30+
label: "💡 Why is this useful?"
31+
placeholder: "Describe the benefit of this feature"
32+
validations:
33+
required: true

.github/ISSUE_TEMPLATE/task.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "🛠️ Task / General Request"
2+
description: "Request a general task, improvement, or refactor."
3+
labels: ["task"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
# 🛠️ **Task / General Request**
9+
Request a task that isn't a bug or feature request.
10+
11+
- type: input
12+
id: task_summary
13+
attributes:
14+
label: "📌 Task summary"
15+
placeholder: "e.g., Refactor XYZ"
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: task_details
21+
attributes:
22+
label: "📋 Task details"
23+
placeholder: "Explain what needs to be done"
24+
validations:
25+
required: true

0 commit comments

Comments
 (0)