Skip to content

Commit fd0ba98

Browse files
kargnasclaude[bot]
andauthored
Optimize GitHub issue templates for conciseness (#58)
- Enable blank issues for flexibility - Make most bug report fields optional - Create simplified improvement template - Create streamlined documentation template - Remove unnecessary verbosity and fields Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: Sangrak Choi <[email protected]>
1 parent 17d2142 commit fd0ba98

File tree

4 files changed

+73
-5
lines changed

4 files changed

+73
-5
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,31 @@ body:
2222
description: How did this occur, please add any config values used and provide a set of reliable steps if possible.
2323
placeholder: When I do X I see Y.
2424
validations:
25-
required: true
25+
required: false
2626
- type: input
2727
id: package-version
2828
attributes:
2929
label: Package Version
3030
description: What version of our Package are you running? Please be as specific as possible
3131
placeholder: 2.0.0
3232
validations:
33-
required: true
33+
required: false
3434
- type: input
3535
id: php-version
3636
attributes:
3737
label: PHP Version
3838
description: What version of PHP are you running? Please be as specific as possible
3939
placeholder: 8.2.0
4040
validations:
41-
required: true
41+
required: false
4242
- type: input
4343
id: laravel-version
4444
attributes:
4545
label: Laravel Version
4646
description: What version of Laravel are you running? Please be as specific as possible
4747
placeholder: 9.0.0
4848
validations:
49-
required: true
49+
required: false
5050
- type: dropdown
5151
id: operating-systems
5252
attributes:

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: true
22
contact_links:
33
- name: Ask a question
44
url: https://github.com/opgginc/laravel-mcp-server/discussions/new?category=q-a
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Documentation
2+
description: Report documentation issues or improvements
3+
title: "[Docs]: "
4+
labels: ["documentation"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Help us improve our documentation!
9+
- type: dropdown
10+
id: doc-type
11+
attributes:
12+
label: Documentation Type
13+
description: What type of documentation issue?
14+
options:
15+
- Missing documentation
16+
- Unclear documentation
17+
- Incorrect documentation
18+
- Examples needed
19+
- Other
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: description
24+
attributes:
25+
label: Description
26+
description: Describe the documentation issue.
27+
placeholder: The documentation for X is unclear because...
28+
validations:
29+
required: true
30+
- type: textarea
31+
id: suggested-improvement
32+
attributes:
33+
label: Suggested Improvement
34+
description: Specific suggestions for improvement.
35+
placeholder: I suggest adding...
36+
validations:
37+
required: false
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Improvement
2+
description: Suggest an improvement or enhancement
3+
title: "[Improvement]: "
4+
labels: ["improvement", "enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thanks for suggesting an improvement!
9+
- type: textarea
10+
id: improvement-description
11+
attributes:
12+
label: What would you like to improve?
13+
description: Describe the current functionality and how it could be better.
14+
placeholder: The current X feature could be improved by...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: proposed-solution
19+
attributes:
20+
label: Proposed Solution
21+
description: Ideas on how to implement this improvement.
22+
placeholder: I suggest implementing this by...
23+
validations:
24+
required: false
25+
- type: textarea
26+
id: additional-context
27+
attributes:
28+
label: Additional Context
29+
description: Any other context or examples.
30+
validations:
31+
required: false

0 commit comments

Comments
 (0)