-
Notifications
You must be signed in to change notification settings - Fork 0
Add GitHub issue templates for roadmap management #2
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a25e122
Add bug report issue template
Pummelchen 82fe9a2
Add feature request issue template
Pummelchen 72c61d4
Add engineering task issue template
Pummelchen 61ce3e3
Add docs and contracts issue template
Pummelchen a8f4933
Add issue template chooser config
Pummelchen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| name: Bug report | ||
| description: Report a reproducible XAIOS defect or regression. | ||
| title: "[Bug]: " | ||
| labels: | ||
| - type: bug | ||
| - needs: triage | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Use this for reproducible defects in XAIOS. Include the smallest relevant validation command and any QEMU output or CI link. | ||
| - type: textarea | ||
| id: summary | ||
| attributes: | ||
| label: Summary | ||
| description: One or two sentences describing the observed problem. | ||
| placeholder: "Example: qemu-smoke fails after VirtIO block initialization." | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: objective | ||
| attributes: | ||
| label: Problem / objective | ||
| description: What is wrong, what should happen instead, and why it matters. | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: subsystem | ||
| attributes: | ||
| label: Relevant subsystem | ||
| multiple: true | ||
| options: | ||
| - boot/UEFI | ||
| - kernel core | ||
| - memory management | ||
| - VirtIO/PCI | ||
| - filesystem/persistence | ||
| - networking/SSH | ||
| - userspace | ||
| - CPU-AI runtime | ||
| - model arena | ||
| - security/sandboxing | ||
| - CI/gates | ||
| - docs/contracts | ||
| - hardware readiness | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: acceptance | ||
| attributes: | ||
| label: Acceptance criteria | ||
| description: Checklist that proves the bug is fixed. | ||
| value: | | ||
| - [ ] Reproducer is documented. | ||
| - [ ] Root cause is identified or bounded. | ||
| - [ ] Fix is covered by the smallest relevant gate. | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: validation | ||
| attributes: | ||
| label: Validation command or gate | ||
| multiple: true | ||
| options: | ||
| - make bootstrap | ||
| - make compile-check | ||
| - make all | ||
| - make image | ||
| - make qemu-smoke | ||
| - make qemu-abi-contract | ||
| - make qemu-readiness-gate | ||
| - make qemu-full-os-rc | ||
| - make qemu-network-suite | ||
| - make qemu-ssh-smoke | ||
| - make intel-desktop-gate | ||
| - docs-only | ||
| - manual-review | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: risk | ||
| attributes: | ||
| label: Risk level | ||
| options: | ||
| - Low | ||
| - Medium | ||
| - High | ||
| - Security | ||
| - Hardware | ||
| - Performance Claim | ||
| - API/Contract | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: dependencies | ||
| attributes: | ||
| label: Dependencies / blockers | ||
| description: List blockers, related issues, missing evidence, or required human decisions. | ||
| placeholder: "Blocked by: ..." | ||
| - type: textarea | ||
| id: related | ||
| attributes: | ||
| label: Related docs or source files | ||
| description: Include paths such as kernel/user/syscall.c, contracts/qemu-rc-v1.json, or scripts/qemu-smoke.py. | ||
| placeholder: | | ||
| - kernel/user/syscall.c | ||
| - scripts/qemu-smoke.py | ||
| validations: | ||
| required: true | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| blank_issues_enabled: true | ||
| contact_links: [] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,108 @@ | ||
| name: Documentation / contracts issue | ||
| description: Track documentation, ABI/API contract, hardware-readiness, or roadmap consistency work. | ||
| title: "[Docs/Contracts]: " | ||
| labels: | ||
| - type: docs | ||
| - area: docs-contracts | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Use this for documentation, contract, release-candidate evidence, and hardware-readiness alignment work. Do not use QEMU-only results as hardware performance proof. | ||
| - type: textarea | ||
| id: summary | ||
| attributes: | ||
| label: Summary | ||
| description: One or two sentences describing the docs/contracts problem. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: objective | ||
| attributes: | ||
| label: Problem / objective | ||
| description: What must be clarified, reconciled, or documented. | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: subsystem | ||
| attributes: | ||
| label: Relevant subsystem | ||
| multiple: true | ||
| options: | ||
| - boot/UEFI | ||
| - kernel core | ||
| - memory management | ||
| - VirtIO/PCI | ||
| - filesystem/persistence | ||
| - networking/SSH | ||
| - userspace | ||
| - CPU-AI runtime | ||
| - model arena | ||
| - security/sandboxing | ||
| - CI/gates | ||
| - docs/contracts | ||
| - hardware readiness | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: acceptance | ||
| attributes: | ||
| label: Acceptance criteria | ||
| description: Checklist defining done. | ||
| value: | | ||
| - [ ] Current source/config is inspected before changing docs or contracts. | ||
| - [ ] Stale or conflicting claims are reconciled or explicitly marked as unresolved. | ||
| - [ ] Validation command or docs-only review path is documented. | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: validation | ||
| attributes: | ||
| label: Validation command or gate | ||
| multiple: true | ||
| options: | ||
| - make bootstrap | ||
| - make compile-check | ||
| - make all | ||
| - make image | ||
| - make qemu-smoke | ||
| - make qemu-abi-contract | ||
| - make qemu-readiness-gate | ||
| - make qemu-full-os-rc | ||
| - make qemu-network-suite | ||
| - make qemu-ssh-smoke | ||
| - make intel-desktop-gate | ||
| - docs-only | ||
| - manual-review | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: risk | ||
| attributes: | ||
| label: Risk level | ||
| options: | ||
| - Low | ||
| - Medium | ||
| - High | ||
| - Security | ||
| - Hardware | ||
| - Performance Claim | ||
| - API/Contract | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: dependencies | ||
| attributes: | ||
| label: Dependencies / blockers | ||
| description: List human decisions, measurements, source changes, or related issues required first. | ||
| - type: textarea | ||
| id: related | ||
| attributes: | ||
| label: Related docs or source files | ||
| description: Include relevant source, docs, contracts, or scripts. | ||
| placeholder: | | ||
| - docs/API.md | ||
| - contracts/qemu-rc-v1.json | ||
| - HARDWARE-READINESS.md | ||
| validations: | ||
| required: true |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,104 @@ | ||
| name: Engineering task | ||
| description: Track implementation, refactoring, validation, CI, or release-readiness work. | ||
| title: "[Task]: " | ||
| labels: | ||
| - type: task | ||
| - needs: triage | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Use this for concrete engineering work. Prefer small, reviewable changes with explicit non-goals and validation gates. | ||
| - type: textarea | ||
| id: summary | ||
| attributes: | ||
| label: Summary | ||
| description: One or two sentences describing the task. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: objective | ||
| attributes: | ||
| label: Problem / objective | ||
| description: What must be changed or verified, and why. | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: subsystem | ||
| attributes: | ||
| label: Relevant subsystem | ||
| multiple: true | ||
| options: | ||
| - boot/UEFI | ||
| - kernel core | ||
| - memory management | ||
| - VirtIO/PCI | ||
| - filesystem/persistence | ||
| - networking/SSH | ||
| - userspace | ||
| - CPU-AI runtime | ||
| - model arena | ||
| - security/sandboxing | ||
| - CI/gates | ||
| - docs/contracts | ||
| - hardware readiness | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: acceptance | ||
| attributes: | ||
| label: Acceptance criteria | ||
| description: Checklist defining done. | ||
| value: | | ||
| - [ ] Current source/config is inspected before implementation. | ||
| - [ ] Change is scoped to the stated subsystem and non-goals. | ||
| - [ ] Relevant validation command is run or skipped with a clear reason. | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: validation | ||
| attributes: | ||
| label: Validation command or gate | ||
| multiple: true | ||
| options: | ||
| - make bootstrap | ||
| - make compile-check | ||
| - make all | ||
| - make image | ||
| - make qemu-smoke | ||
| - make qemu-abi-contract | ||
| - make qemu-readiness-gate | ||
| - make qemu-full-os-rc | ||
| - make qemu-network-suite | ||
| - make qemu-ssh-smoke | ||
| - make intel-desktop-gate | ||
| - docs-only | ||
| - manual-review | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: risk | ||
| attributes: | ||
| label: Risk level | ||
| options: | ||
| - Low | ||
| - Medium | ||
| - High | ||
| - Security | ||
| - Hardware | ||
| - Performance Claim | ||
| - API/Contract | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: dependencies | ||
| attributes: | ||
| label: Dependencies / blockers | ||
| description: List blockers, sequencing constraints, missing hardware, or required human decisions. | ||
| - type: textarea | ||
| id: related | ||
| attributes: | ||
| label: Related docs or source files | ||
| description: Include relevant source, docs, contracts, or scripts. | ||
| validations: | ||
| required: true |
Oops, something went wrong.
Oops, something went wrong.
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.
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.
GitHub issue forms expect
labelsto be an array or comma-delimited string of label names, but these unquoted entries parse as YAML maps ({"type":"bug"},{"needs":"triage"}) rather than the intended label strings. In repositories using these new forms, this makes the template metadata invalid or prevents the automatic labels from being applied; the samelabelspattern is repeated in the other issue-form files and should be quoted, e.g."type: bug".Useful? React with 👍 / 👎.