-
-
Notifications
You must be signed in to change notification settings - Fork 20.9k
chore: add GitHub issue templates for bug reports and feature requests #1070
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
base: main
Are you sure you want to change the base?
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,41 @@ | ||
| name: Bug Report | ||
| description: Create a report to help us improve | ||
| title: '[Bug]: ' | ||
| labels: ['bug', 'triage'] | ||
|
||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for taking the time to fill out this bug report! | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| description: A clear and concise description of what the bug is. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: reproduction | ||
| attributes: | ||
| label: Reproduction Steps | ||
| description: Steps to reproduce the behavior. | ||
| placeholder: | | ||
| 1. Go to '...' | ||
| 2. Click on '....' | ||
| 3. See error | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: expected | ||
| attributes: | ||
| label: Expected behavior | ||
| description: A clear and concise description of what you expected to happen. | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: browser | ||
| attributes: | ||
| label: Browser/Environment | ||
| description: E.g., Chrome, Safari, Node.js 20, Docker | ||
| validations: | ||
| required: false | ||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -0,0 +1,30 @@ | ||||
| name: Feature Request | ||||
| description: Suggest an idea for this project | ||||
| title: '[Feature]: ' | ||||
| labels: ['enhancement', 'triage'] | ||||
|
||||
| labels: ['enhancement', 'triage'] |
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 existing
config.ymlalready has a "🐛 Report a Bug / Spam" contact link that opens a blank issue form athttps://github.com/f/prompts.chat/issues/new?title=Report:%20. With this newbug_report.yml, users will now see both a structured "Bug Report" form template and the "Report a Bug / Spam" contact link when creating an issue, which is redundant and potentially confusing.Consider updating
.github/ISSUE_TEMPLATE/config.ymlto either remove the "🐛 Report a Bug / Spam" contact link (since the structured template replaces it) or rename it to something more specific like "Report Spam" to differentiate it from the new structured bug report form.