Add standardized issue templates#25
Open
thc1006 wants to merge 1 commit into
Open
Conversation
Add GitHub issue form templates under .github/ISSUE_TEMPLATE: a bug report, a feature request / proposal, and a question form, plus a config that keeps blank issues enabled. Each form collects the context that otherwise has to be asked for in follow-up comments. Signed-off-by: thc1006 <84045975+thc1006@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds standardized GitHub issue form templates under .github/ISSUE_TEMPLATE/ to give contributors structured templates for bug reports, feature proposals, and questions, while preserving the option to file blank issues. Closes #19.
Changes:
- Adds three YAML issue forms (bug report, feature request, question) with required/optional fields and default labels.
- Adds a
config.ymlthat explicitly keeps blank issues enabled.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/ISSUE_TEMPLATE/bug_report.yml | Bug template collecting summary, repro steps, traceback, and environment. |
| .github/ISSUE_TEMPLATE/feature_request.yml | Proposal template covering problem, proposed change, and alternatives. |
| .github/ISSUE_TEMPLATE/question.yml | Lightweight question template with question and context fields. |
| .github/ISSUE_TEMPLATE/config.yml | Keeps blank issues enabled as an escape hatch. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
zuorenchen
approved these changes
May 18, 2026
Member
zuorenchen
left a comment
There was a problem hiding this comment.
LGTM, you can merge it if @William-Mou doesn't have any comment on this.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add GitHub issue form templates under
.github/ISSUE_TEMPLATE/, per #19.What this adds
bug_report.yml-- a bug in the simulator, environment, or evaluation. Collects what happened, repro steps, traceback, and environment.feature_request.yml-- an enhancement or design proposal. Collects problem / current state, the proposed change, and alternatives / trade-offs.question.yml-- usage, competition, or leaderboard questions.config.yml-- keeps blank issues enabled as an escape hatch.All are YAML issue forms (GitHub's current format) and in English. The labels they apply (
bug,enhancement,question) are GitHub's default label set.The set is deliberately minimal and easy to extend later.
Closes #19