Skip to content

Commit 9148ea1

Browse files
MickLeskhavardthom
andauthored
[github]: add new Frontend_Report / Issue_Report & optimize config.yml (#226)
* Add new Frontend_Report / Issue_Report & optimize config.yml * Update .github/ISSUE_TEMPLATE/bug_report.yml switch general to other Co-authored-by: Håvard Gjøby Thom <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml remove title Co-authored-by: Håvard Gjøby Thom <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml remove label Co-authored-by: Håvard Gjøby Thom <[email protected]> * Update .github/ISSUE_TEMPLATE/config.yml update text for questions and help Co-authored-by: Håvard Gjøby Thom <[email protected]> * Update .github/ISSUE_TEMPLATE/config.yml harmonize with readme (discord) Co-authored-by: Håvard Gjøby Thom <[email protected]> * Update .github/ISSUE_TEMPLATE/frontend_report.yml harmonize title for Frontend Co-authored-by: Håvard Gjøby Thom <[email protected]> * remove documentation issue * Update .github/ISSUE_TEMPLATE/config.yml harmonize text Co-authored-by: Håvard Gjøby Thom <[email protected]> * Update .github/ISSUE_TEMPLATE/frontend_report.yml update label Co-authored-by: Håvard Gjøby Thom <[email protected]> * Update .github/ISSUE_TEMPLATE/frontend_report.yml remove title Co-authored-by: Håvard Gjøby Thom <[email protected]> * Harmonize Frontend > Website * remove "frontend" word * Add "Other" to Frontend-Report --------- Co-authored-by: Håvard Gjøby Thom <[email protected]>
1 parent fc75c66 commit 9148ea1

File tree

4 files changed

+104
-62
lines changed

4 files changed

+104
-62
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
name: Problems with a script
2-
description: Generate a report on an issue pertaining specifically to a script. For other inquires please share them in the Discussions section.
1+
name: "🐞 Script Issue Report"
2+
description: Report a specific issue with a script. For other inquiries, please use the Discussions section.
3+
34
body:
45
- type: markdown
56
attributes:
@@ -8,37 +9,38 @@ body:
89
- Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one.
910
- If the default Linux distribution is not adhered to, script support will be discontinued.
1011
- When encountering the error message `[ERROR] in line 23: exit code *: while executing command "$@" > /dev/null 2>&1`, make sure to run the script in verbose mode to accurately determine the underlying issue.
11-
- For suggestions, questions or feature/script requests, please share them in the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions)
12+
- For suggestions, questions, or feature/script requests, please use the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions)
13+
1214
- type: input
1315
id: guidelines
1416
attributes:
1517
label: Please verify that you have read and understood the guidelines.
16-
placeholder: 'yes'
18+
placeholder: "yes"
1719
validations:
1820
required: true
21+
1922
- type: textarea
2023
id: bug
2124
attributes:
2225
label: A clear and concise description of the issue.
2326
validations:
2427
required: true
25-
- type: dropdown
26-
id: settings
28+
29+
- type: checkboxes
2730
validations:
2831
required: true
2932
attributes:
3033
label: What settings are you currently utilizing?
3134
options:
32-
-
33-
- Default Settings
34-
- Advanced Settings
35+
- label: Default Settings
36+
- label: Advanced Settings
37+
3538
- type: markdown
3639
attributes:
37-
value: (if Advanced Settings, please try Default Settings before creating an issue)
40+
value: "If using Advanced Settings, please try Default Settings before creating an issue."
41+
3842
- type: dropdown
3943
id: distribution
40-
validations:
41-
required: true
4244
attributes:
4345
label: Which Linux distribution are you employing?
4446
options:
@@ -49,17 +51,21 @@ body:
4951
- Ubuntu 20.04
5052
- Ubuntu 22.04
5153
- Ubuntu 24.04
54+
validations:
55+
required: true
56+
5257
- type: textarea
5358
id: screenshot
5459
attributes:
5560
label: If relevant, including screenshots or a code block can be helpful in clarifying the issue.
56-
placeholder: Code blocks begin and conclude by enclosing the code with three backticks (```) above and below it.
61+
placeholder: "Code blocks begin and conclude by enclosing the code with three backticks (```) above and below it."
5762
validations:
5863
required: false
64+
5965
- type: textarea
6066
id: reproduce
6167
attributes:
6268
label: Please provide detailed steps to reproduce the issue.
63-
placeholder: First do this, then this ...
69+
placeholder: "First do this, then this ..."
6470
validations:
6571
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Helper-Scripts Community Support
4-
url: https://github.com/community-scripts/ProxmoxVE/discussions
5-
about: Please ask and answer questions here.
3+
- name: 🤔 Questions and Help
4+
url: https://github.com/community-scripts/ProxmoxVE/discussions
5+
about: For suggestions or questions, please use the Discussions section.
6+
- name: 🌟 Feature request
7+
url: https://github.com/community-scripts/ProxmoxVE/discussions/new?category=request-script
8+
about: For feature/script requests, please use the Discussions section.
9+
- name: 💻 Discord
10+
url: https://discord.gg/UHrpNWGwkH
11+
about: Join our Discord server to chat with other users in the Proxmox Helper Scripts community.
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: "🌐 Website Issue Report"
2+
description: Report an issue, an optimization request or an documentation issue specifically related to the website.
3+
labels: "website"
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
**IMPORTANT:** Failure to comply with the following guidelines may result in immediate closure.
10+
- Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one.
11+
- If the problem is related to a bug in the website, kindly check for browser compatibility and ensure the issue occurs in multiple browsers before submitting.
12+
- For suggestions, questions, or feature requests, please use the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions)
13+
14+
- type: input
15+
id: guidelines
16+
attributes:
17+
label: Please verify that you have read and understood the guidelines.
18+
placeholder: 'yes'
19+
validations:
20+
required: true
21+
22+
- type: dropdown
23+
id: issue_type
24+
validations:
25+
required: true
26+
attributes:
27+
label: What type of issue is this?
28+
options:
29+
-
30+
- Bug
31+
- Optimization
32+
- Documentation
33+
- Other
34+
35+
- type: textarea
36+
id: bug_description
37+
attributes:
38+
label: A clear and concise description of the issue.
39+
validations:
40+
required: true
41+
42+
- type: dropdown
43+
id: browser
44+
validations:
45+
required: true
46+
attributes:
47+
label: Which browser are you using?
48+
options:
49+
-
50+
- Chrome
51+
- Firefox
52+
- Safari
53+
- Edge
54+
- Other
55+
56+
- type: markdown
57+
attributes:
58+
value: |
59+
**If the issue is browser-related**, please provide information on the version and platform (Windows, MacOS, Linux, etc.).
60+
61+
- type: textarea
62+
id: screenshot
63+
attributes:
64+
label: If relevant, including screenshots or a code block can be helpful in clarifying the issue.
65+
placeholder: "Code blocks begin and conclude by enclosing the code with three backticks (```) above and below it."
66+
validations:
67+
required: false
68+
69+
- type: textarea
70+
id: reproduce
71+
attributes:
72+
label: Please provide detailed steps to reproduce the issue.
73+
placeholder: "First do this, then this ..."
74+
validations:
75+
required: false

.github/ISSUE_TEMPLATE/website-issue.yaml

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)