Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
133 changes: 39 additions & 94 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,153 +1,98 @@
name: Bug Report
description: Report a bug to help us improve Stem
title: "[BUG] "
name: Defect
description: Report a reproducible defect or regression in Stem
title: "Defect: "
labels: ["type: defect", "status: needs-triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Please fill out all required fields.

- type: textarea
id: description
id: summary
attributes:
label: Description
description: A clear and concise description of the bug.
placeholder: Describe what went wrong...
label: Summary
description: What broke, and what impact does it have?
placeholder: Describe the defect in one or two sentences.
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: How can we reproduce this issue?
description: Provide the shortest reliable path to reproduce the defect.
placeholder: |
1. Go to '...'
2. Click on '...'
3. See error
1. ...
2. ...
3. ...
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: Describe what you expected...
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened?
placeholder: Describe what actually happened...
validations:
required: true

- type: dropdown
id: area
attributes:
label: Area
description: Which part of Stem is affected?
options:
- API/Backend
- UI/Frontend
- Reflector
- Benchmark (RFC 2544)
- ServiceTest (Y.1564/MEF)
- TrafficGen
- Measure (Y.1731)
- Certify (RFC 2889/6349/TSN)
- TestMaster
- License
- C Dataplane (DPDK/AF_PACKET/AF_XDP)
- CLI
- Installation/Deployment
- Documentation
- CI/CD Pipeline
- Other
- Other
- area: api
- area: benchmark
- area: build
- area: c-dataplane
- area: ci
- area: cli
- area: docs
- area: frontend
- area: license
- area: measure
- area: reflector
- area: security
- area: service-test
- area: tests
- area: traffic-generator
validations:
required: true

- type: dropdown
id: severity
attributes:
label: Severity
description: How severe is this bug?
options:
- Critical - App crashes or data loss
- High - Major feature broken
- Medium - Feature partially broken
- Low - Minor issue or cosmetic
- severity: critical
- severity: high
- severity: medium
- severity: low
validations:
required: true

- type: input
id: version
attributes:
label: Stem Version
description: "Run: ./stem --version or check the UI footer"
placeholder: "e.g., v1.0.0"
validations:
required: true

- type: input
id: os
attributes:
label: Operating System
description: Which OS are you running on?
placeholder: "e.g., Ubuntu 24.04, macOS 15.1, Raspberry Pi OS"
validations:
required: true

- type: dropdown
id: architecture
attributes:
label: Architecture
description: What CPU architecture?
options:
- amd64 (x86_64)
- arm64 (aarch64)
- Other
validations:
required: true

label: Version or Commit
placeholder: v1.2.3, commit SHA, deployed URL, or "main"
- type: input
id: browser
id: environment
attributes:
label: Browser (if UI issue)
description: Which browser are you using?
placeholder: "e.g., Chrome 120, Firefox 121, Safari 17"

label: Environment
placeholder: OS, browser, device, deployment target, or runtime version
- type: textarea
id: logs
attributes:
label: Logs
description: Paste relevant logs here (check journalctl -u stem or stem.log)
label: Logs or Output
description: Paste only relevant output. Redact secrets.
render: shell

- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain the problem.

- type: textarea
id: context
attributes:
label: Additional Context
description: Any other context about the problem.

- type: checkboxes
id: checklist
attributes:
label: Pre-submission Checklist
options:
- label: I have searched existing issues to ensure this isn't a duplicate
- label: I searched existing issues and did not find a duplicate.
required: true
- label: I have included version and environment information
- label: I included enough detail for someone else to reproduce or investigate.
required: true
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Documentation
url: https://github.com/MustardSeedNetworks/stem/wiki
about: Check the wiki for guides and FAQ before opening an issue
- name: Discussions
- name: Questions and Discussions
url: https://github.com/MustardSeedNetworks/stem/discussions
about: Ask questions or discuss ideas in GitHub Discussions
about: Ask usage questions or discuss ideas before filing a tracked issue.
- name: Security Vulnerability
url: https://github.com/MustardSeedNetworks/stem/security/advisories/new
about: Report security issues privately.
68 changes: 68 additions & 0 deletions .github/ISSUE_TEMPLATE/epic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Epic
description: Track a larger body of related work for Stem
title: "Epic: "
labels: ["type: epic", "status: needs-triage"]
body:
- type: textarea
id: outcome
attributes:
label: Outcome
description: What strategic or user-visible outcome does this epic deliver?
validations:
required: true
- type: dropdown
id: area
attributes:
label: Primary Area
options:
- area: api
- area: benchmark
- area: build
- area: c-dataplane
- area: ci
- area: cli
- area: docs
- area: frontend
- area: license
- area: measure
- area: reflector
- area: security
- area: service-test
- area: tests
- area: traffic-generator
validations:
required: true
- type: textarea
id: scope
attributes:
label: Scope
description: What is in scope and out of scope?
placeholder: |
In scope:
- ...

Out of scope:
- ...
validations:
required: true
- type: textarea
id: child_issues
attributes:
label: Child Issues
description: Link issues as they are created.
placeholder: |
- [ ] #...
- [ ] #...
- type: textarea
id: acceptance
attributes:
label: Epic Completion Criteria
placeholder: |
- [ ] ...
- [ ] ...
validations:
required: true
- type: textarea
id: risks
attributes:
label: Risks and Dependencies
Loading