-
Notifications
You must be signed in to change notification settings - Fork 8
Update issue templates #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,33 @@ | ||||||
| --- | ||||||
| name: Bug report | ||||||
| about: Create a report to help us improve | ||||||
| title: '' | ||||||
| labels: '' | ||||||
| assignees: '' | ||||||
|
|
||||||
| --- | ||||||
|
|
||||||
| **Describe the bug** | ||||||
| A clear and concise description of what the bug is. | ||||||
|
|
||||||
| **To Reproduce** | ||||||
| Steps to reproduce the behavior: | ||||||
| 1. Server environment variables: '...' | ||||||
| 2. Backend Details: '....' | ||||||
| 3. Request Curl: '....' | ||||||
| 4. Where do you see the error | ||||||
| 5. Attach any logs to illustrate the issue: | ||||||
|
||||||
| 5. Attach any logs to illustrate the issue: | |
| 5. Attach any logs to illustrate the issue: |
Copilot
AI
Dec 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent list formatting: Line 28 uses a space before the dash ( - Headers) while line 29 doesn't (- Body). Both should use the same formatting for consistency, preferably - Body to match line 28.
| - Body | |
| - Body |
Copilot
AI
Dec 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The bug report template here explicitly asks for Server environment variables, full request Curl details including Headers and Body, and attached logs, which can easily include secrets such as API keys, tokens, passwords, or internal hostnames. An attacker monitoring public issues could harvest these values if reporters follow this guidance. Tighten these prompts to request only minimal, sanitized data (for example, specific non-secret env vars or redacted request samples) and add explicit instructions not to include secrets, access tokens, or passwords in issues.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| --- | ||
| name: Feature request | ||
| about: Suggest an idea for this project | ||
| title: '' | ||
| labels: '' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| **Is your feature request related to a problem? Please describe.** | ||
| A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
|
||
| **Describe the solution you'd like** | ||
| A clear and concise description of what you want to happen. | ||
|
|
||
| **Describe alternatives you've considered** | ||
| A clear and concise description of any alternative solutions or features you've considered. | ||
|
|
||
| **Additional context** | ||
| Add any other context or screenshots about the feature request here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Inconsistent capitalization in list items. Line 16 uses "Backend Details" with capital D, while line 17 uses "Request Curl" with capital C and capital R. For consistency, consider using lowercase for items in the numbered list (e.g., "backend details", "request curl") or capitalize all items consistently.