Skip to content
Merged
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
51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Bug Report
description: Report a bug in Degoog
title: "[Bug]: "
labels: ["bug"]
body:
- type: input
id: version
attributes:
label: What version of Degoog are you using?
placeholder: e.g. 1.2.3
validations:
required: false
- type: input
id: platform
attributes:
label: What platform is it deployed on?
placeholder: e.g. Docker on Ubuntu 22.04, Node.js on Debian 12
validations:
required: false
- type: textarea
id: steps
attributes:
label: What steps can reproduce the bug?
placeholder: |
1. Go to '...'
2. Search for '...'
3. Click on '...'
4. See error
validations:
required: true
- type: textarea
id: expected
attributes:
label: What is the expected behavior?
placeholder: Describe what you expected to happen.
validations:
required: false
- type: textarea
id: actual
attributes:
label: What do you see instead?
placeholder: Describe what actually happened.
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional information
placeholder: Any other context, screenshots, or logs that might help.
validations:
required: false
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Ask a Question
url: https://discord.gg/invite/mMuk2WzVZu
about: Please ask and answer questions on our Discord server.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/crash_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Crash Report
description: Report a crash in Degoog
title: "[Crash]: "
labels: ["bug", "crash"]
body:
- type: textarea
id: reproduce
attributes:
label: How can we reproduce the crash?
placeholder: Steps to reproduce the crash, if known.
validations:
required: false
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output.
render: shell
validations:
required: false
- type: textarea
id: stacktrace
attributes:
label: Stack Trace
description: Please paste the full stack trace.
render: shell
validations:
required: true
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Documentation Issue
description: Report an issue with the documentation
title: "[Docs]: "
labels: ["documentation"]
body:
- type: dropdown
id: type
attributes:
label: What is the type of issue?
options:
- Missing documentation
- Incorrect
- Confusing
- Example code not working
- Something else
validations:
required: true
- type: textarea
id: issue
attributes:
label: What is the issue?
placeholder: Describe the documentation issue in detail.
validations:
required: true
- type: input
id: location
attributes:
label: Where did you find it?
placeholder: e.g. URL, page name, or section
validations:
required: false
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Feature Request
description: Suggest a new feature for Degoog
title: "[Feature]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
> **Note:** Before submitting, please consider whether your feature could be implemented as a [plugin](https://fccview.github.io/degoog/plugins.html).
> If it can, we encourage you to create your own plugin repository and use it via the [store](https://fccview.github.io/degoog/store.html) instead of opening a feature request here.
> Feature requests here should be for changes to Degoog's core functionality.
- type: textarea
id: problem
attributes:
label: What is the problem this feature would solve?
placeholder: A clear description of the problem or pain point.
validations:
required: true
- type: textarea
id: proposal
attributes:
label: What is the feature you are proposing to solve the problem?
placeholder: Describe the solution you'd like.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: What alternatives have you considered?
placeholder: Describe any alternative solutions or features you've considered.
validations:
required: false
Loading