Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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]: '
Comment on lines +1 to +3
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The existing config.yml already has a "🐛 Report a Bug / Spam" contact link that opens a blank issue form at https://github.com/f/prompts.chat/issues/new?title=Report:%20. With this new bug_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.yml to 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.

Copilot uses AI. Check for mistakes.
labels: ['bug', 'triage']
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The labels bug and triage referenced here must already exist in the repository for GitHub to apply them automatically when an issue is created from this template. If these labels don't exist, issues will be created successfully but without any labels applied (GitHub silently ignores non-existent labels in issue forms). Please verify that these labels exist in the repository settings, and create them if they don't.

Copilot uses AI. Check for mistakes.
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
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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']
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as with bug_report.yml: the labels enhancement and triage referenced here must already exist in the repository for GitHub to apply them automatically. Please verify these labels exist in the repository settings, and create them if they don't.

Suggested change
labels: ['enhancement', 'triage']

Copilot uses AI. Check for mistakes.
body:
- type: markdown
attributes:
value: |
Thanks for sharing your ideas to improve prompts.chat!
- type: textarea
id: problem
attributes:
label: The Problem
description: Is your feature request related to a problem? Please describe.
validations:
required: true
- type: textarea
id: solution
attributes:
label: The Solution
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
Loading