feat: add GitHub issue templates for bugs, features, and questions#184
Merged
Conversation
Adds YAML-based issue forms: - bug-report.yml (labels: bug) - feature-request.yml (labels: type:feature) - question.yml (labels: question)
Contributor
There was a problem hiding this comment.
Pull request overview
Adds GitHub YAML issue forms to standardize how contributors submit bug reports, feature requests, and questions, improving triage signal and ensuring key details are captured up front.
Changes:
- Introduces a Bug Report issue form capturing command, expected/actual behavior, version, environment details, CI/CD context, and blocking status.
- Introduces a Feature Request issue form capturing problem/use case, proposed solution, and optionally the affected command.
- Introduces a Question issue form capturing the question and optional context.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/ISSUE_TEMPLATE/bug-report.yml | New bug-report issue form (command/behavior/version/environment/CI-CD/blocking). |
| .github/ISSUE_TEMPLATE/feature-request.yml | New feature-request issue form (problem/solution/affected command). |
| .github/ISSUE_TEMPLATE/question.yml | New question issue form (question + optional context). |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
EMaher
commented
Jun 23, 2026
Contributor
Author
|
@copilot have squad handle comments. |
…in bug report template
azaslonov
approved these changes
Jun 23, 2026
Contributor
Author
|
Related to #90 |
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.
Why
The repo has no issue templates, which means bug reports and feature requests arrive in inconsistent formats. Adding structured YAML issue forms gives contributors clear guidance and ensures we capture the right details up front.
What this adds
Three YAML-based issue form templates under
.github/ISSUE_TEMPLATE/:bug) -- Captures the command, expected/actual behavior, npm package version (with instructions on how to find it), environment details, CI/CD platform, and whether the bug is blocking.type:feature) -- Captures the problem/use case, proposed solution, and optionally which command is affected.question) -- Simple form for usage questions with optional context.Notes
labels:key in each template.validations.required: trueso incomplete submissions are caught early.