chore: add GitHub issue templates#1607
Merged
SchoolyB merged 1 commit intoSchoolyB:devfrom May 4, 2026
Merged
Conversation
Closes SchoolyB#1569. The repo had no .github/ISSUE_TEMPLATE/ directory, so issue authors hit an empty form and the bug-report template documented in CONTRIBUTING.md had no automatic enforcement at filing time. Adds three YAML issue forms under .github/ISSUE_TEMPLATE/: - bug_report.yml: title prefix 'bug: ', severity dropdown matching CONTRIBUTING.md (Crash / Incorrect output / Misleading error / Cosmetic), required fields for ez report output, summary, reproduction (.ez snippet), expected, actual, plus optional where-to-look and related sections - mirrors the markdown template in CONTRIBUTING.md so the form output reads cleanly when triaged. - feature_request.yml: title prefix 'feat: ', required fields for description, use case, alternatives considered, plus an optional example section. - config.yml: disables blank issues and points readers at STANDARD.md and CONTRIBUTING.md as the first stop before filing. All three pass yaml.safe_load.
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.
Closes #1569.
The repo had no
.github/ISSUE_TEMPLATE/directory, so anyone filing an issue hit an empty form and the bug-report template documented inCONTRIBUTING.md(the## Reporting Issues/### Bug Reportssection) had no automatic enforcement at filing time.This adds three YAML issue forms under
.github/ISSUE_TEMPLATE/:bug_report.yml— title prefixbug:, severity dropdown matching the CONTRIBUTING table (Crash / Incorrect output / Misleading error / Cosmetic), requiredez reportsystem-info paste, summary, reproduction (.ezsnippet), expected, actual, plus optionalWhere to lookandRelatedsections. Mirrors the markdown template inCONTRIBUTING.mdso the form output reads cleanly when triaged.feature_request.yml— title prefixfeat:, required Description / Use case / Alternatives considered, plus an optional Examples section.config.yml—blank_issues_enabled: falseplus contact links pointing readers atSTANDARD.md(language spec, the canonical reference) andCONTRIBUTING.md(build / test / code style / PR process) as the first stop before filing.All three files pass
yaml.safe_load.