diff --git a/.gitea/issue_template/bug_report.yaml b/.gitea/issue_template/bug_report.yaml new file mode 100644 index 0000000..1aff83a --- /dev/null +++ b/.gitea/issue_template/bug_report.yaml @@ -0,0 +1,46 @@ +name: Bug Report +about: Something isn't working as expected +labels: + - bug +body: + - type: checkboxes + id: search + attributes: + label: Before filing + options: + - label: I searched existing issues and didn't find a match + required: true + - type: textarea + id: description + attributes: + label: What happened? + description: Include what you expected to happen instead. + placeholder: | + When I run `uptop serve`, the TUI crashes after 10 seconds. + I expected it to keep running and display monitor status. + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to reproduce + placeholder: | + 1. Run `uptop serve` + 2. Wait ~10 seconds + 3. TUI crashes with panic + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment & logs + description: Output of `uptop version`, OS, terminal. Paste any errors below. + render: shell + placeholder: | + uptop version 2026.06.1 + OS: Debian 13 + Terminal: Ghostty + + [paste any error output here] + validations: + required: false diff --git a/.gitea/issue_template/feature_request.yaml b/.gitea/issue_template/feature_request.yaml new file mode 100644 index 0000000..6249b85 --- /dev/null +++ b/.gitea/issue_template/feature_request.yaml @@ -0,0 +1,20 @@ +name: Feature Request +about: Suggest a new feature or enhancement +labels: + - feature +body: + - type: textarea + id: problem + attributes: + label: Problem + description: What's frustrating or missing? + placeholder: I find myself always needing to ... + validations: + required: true + - type: textarea + id: solution + attributes: + label: Proposed solution + description: How would you like this to work? + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..c83f8db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Report a Bug + url: https://gitea.lerkolabs.com/lerkolabs/uptop/issues/new?template=bug_report.yaml + about: Report bugs on our Gitea instance + - name: Request a Feature + url: https://gitea.lerkolabs.com/lerkolabs/uptop/issues/new?template=feature_request.yaml + about: Suggest features on our Gitea instance