-
Notifications
You must be signed in to change notification settings - Fork 0
chore: set native issue types in the issue forms #23
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 |
|---|---|---|
|
|
@@ -2,6 +2,7 @@ name: Epic | |
| description: A large initiative spanning multiple stories with a meaningful business or technical objective. | ||
| title: "[Epic]: " | ||
| labels: ["epic"] | ||
| type: Epic | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid top-level
Evidence: Added line
|
||
| body: | ||
| - type: markdown | ||
| attributes: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,7 @@ name: User Story | |
| description: A user need or a valuable capability, with testable acceptance criteria. | ||
| title: "[Story]: " | ||
| labels: ["user-story"] | ||
| type: Story | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid top-level
Evidence: Added line
|
||
| body: | ||
| - type: markdown | ||
| attributes: | ||
|
|
||
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.
Invalid top-level
typekey breaks formtypeis not a legal top-level key in a GitHub issue form. The schema for issue forms supports onlyname,description,title,labels,assignees,projects, andbody(docs.github.com "Syntax for issue forms"). An unrecognized top-level key fails the form's YAML validation, so when a contributor opens this template GitHub refuses to load it (form configuration error), rendering the template — and this change's goal — unusable. Consider a legitimate mechanism such as the issue-types feature (repo/org-level) or alabel, or verifying behavior in an actual repo before merging.Evidence: Added line
type: Taskbetweenlabels: ["ticket"]andbody:; GitHub issue-form schema documents notypetop-level key.