diff options
| author | Aiden Cline <[email protected]> | 2025-10-18 14:10:14 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-10-18 14:10:14 -0500 |
| commit | 233a018fe54e29f1d91b15ac8a806f44e4212230 (patch) | |
| tree | ef7d4c48c98f8752097a86ba9b57f8d1d7019b9d /.github/ISSUE_TEMPLATE | |
| parent | d69beec087bb56e5e23acf654347a6af7a09ba7b (diff) | |
| download | opencode-233a018fe54e29f1d91b15ac8a806f44e4212230.tar.gz opencode-233a018fe54e29f1d91b15ac8a806f44e4212230.zip | |
docs: contributing.md (#3248)
Co-authored-by: Jay <[email protected]>
Diffstat (limited to '.github/ISSUE_TEMPLATE')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.yml | 51 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 5 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature-request.yml | 20 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/question.yml | 11 |
4 files changed, 87 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 000000000..29ddd3bd5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,51 @@ +name: Bug report +description: Report an issue that should be fixed +labels: ["bug"] +body: + - type: textarea + id: description + attributes: + label: Description + description: Describe the bug you encountered + placeholder: What happened? + validations: + required: true + + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce + description: How can we reproduce this issue? + placeholder: | + 1. + 2. + 3. + validations: + required: false + + - type: textarea + id: screenshot-or-link + attributes: + label: Screenshot and/or share link + description: Run `/share` to get a share link, or attach a screenshot + placeholder: Paste link or drag and drop screenshot here + validations: + required: false + + - type: input + id: os + attributes: + label: Operating System + description: what OS are you using? + placeholder: e.g., macOS 26.0.1, Ubuntu 22.04, Windows 11 + validations: + required: false + + - type: input + id: terminal + attributes: + label: Terminal + description: what terminal are you using? + placeholder: e.g., iTerm2, Ghostty, Alacritty, Windows Terminal + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..459ce25d0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: 💬 Discord Community + url: https://discord.gg/opencode + about: For quick questions or real-time discussion. Note that issues are searchable and help others with the same question. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 000000000..92e6c4757 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,20 @@ +name: 🚀 Feature Request +description: Suggest an idea, feature, or enhancement +labels: [discussion] +title: "[FEATURE]:" + +body: + - type: checkboxes + id: verified + attributes: + label: Feature hasn't been suggested before. + options: + - label: I have verified this feature I'm about to request hasn't been suggested before. + required: true + + - type: textarea + attributes: + label: Describe the enhancement you want to request + description: What do you want to change or add? What are the benefits of implementing this? Try to be detailed so we can understand your request better :) + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml new file mode 100644 index 000000000..2310bfcc8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -0,0 +1,11 @@ +name: Question +description: Ask a question +labels: ["question"] +body: + - type: textarea + id: question + attributes: + label: Question + description: What's your question? + validations: + required: true |
