From 284e9981bc06af27d251efb1221446475952daf9 Mon Sep 17 00:00:00 2001 From: rob Date: Tue, 30 Dec 2025 03:04:23 -0400 Subject: [PATCH] Add issue templates for bug reports, feature requests, and questions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds Gitea issue templates in .gitea/ISSUE_TEMPLATE/: - bug_report.md: Environment, steps to reproduce, error output - feature_request.md: Use case, proposed solution, alternatives - question.md: Context, what's been tried 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitea/ISSUE_TEMPLATE/bug_report.md | 32 ++++++++++++++++++++++++ .gitea/ISSUE_TEMPLATE/feature_request.md | 21 ++++++++++++++++ .gitea/ISSUE_TEMPLATE/question.md | 17 +++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 .gitea/ISSUE_TEMPLATE/bug_report.md create mode 100644 .gitea/ISSUE_TEMPLATE/feature_request.md create mode 100644 .gitea/ISSUE_TEMPLATE/question.md diff --git a/.gitea/ISSUE_TEMPLATE/bug_report.md b/.gitea/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..9070ce0 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug Report +about: Report something that isn't working +labels: bug +--- + +## Description + +What happened? + +## Steps to Reproduce + +1. +2. +3. + +## Expected Behavior + +What should have happened? + +## Environment + +- OS: +- SmartTools version: +- Provider: +- Docker or native install? + +## Error Output + +``` +Paste any error messages here +``` diff --git a/.gitea/ISSUE_TEMPLATE/feature_request.md b/.gitea/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..85a602d --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,21 @@ +--- +name: Feature Request +about: Suggest a new feature or improvement +labels: enhancement +--- + +## Feature Description + +A clear description of the feature you'd like to see. + +## Use Case + +Why do you need this? What problem does it solve? + +## Proposed Solution + +How do you think it should work? (optional) + +## Alternatives Considered + +Any other approaches you've thought about? (optional) diff --git a/.gitea/ISSUE_TEMPLATE/question.md b/.gitea/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..1291b8f --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/question.md @@ -0,0 +1,17 @@ +--- +name: Question +about: Ask a question about SmartTools +labels: question +--- + +## Question + +What would you like to know? + +## What I've Tried + +Any steps you've already taken to find the answer? + +## Context + +Any additional context that might help?