Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add issue templates #66

Merged
merged 1 commit into from
Mar 31, 2024
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
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Bug Report
description: "Create a bug report for obsidian smart second brain to help us improve"
title: "Bug report"
labels: ["bug"]
assignees: ["leo310", "nicobrauchtgit"]
body:
- type: markdown
attributes:
value: |
# Thanks for taking the time to fill out this bug report!🐙
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also add a screenshot, if possible.
placeholder: Tell us what you see!
validations:
required: true
- type: textarea
id: error-log
attributes:
label: Error Statement
description: Enable Settings > Advanced > Developer Console logging. Open Developer Tools (⌘ Cmd + ⌥ Opt + I / Ctrl + Shift + I). Open Console Tab.
placeholder: Obsidian Developer Console
- type: input
id: version
attributes:
label: Smart Second Brain Version
description: What version of S2B are you running?
placeholder: 0.6.1
validations:
required: true
- type: textarea
id: debug-info
attributes:
label: Debug Info
description: In Obsidian open Command Palette > Show debug info
placeholder: "SYSTEM INFO: ..."
validations:
required: true

47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Feature Request
description: What would you like to see added to smart second brain?
title: Feature Request
labels:
- enhancement
assignees:
- leo310
- nicobrauchtgit
body:
- type: markdown
attributes:
value: "# Thanks for inspiring us!\U0001F419\n"
- type: input
id: feature-area
attributes:
label: Feature Area
description: Which category does the feature belong to?
placeholder: 'Models, AI Services, Settings, ...'
validations:
required: true
- type: textarea
id: problem
attributes:
label: Painpoint
description: Is your feature idea related to a problem?
placeholder: I'm always frustrated when ...
- type: textarea
id: desc
attributes:
label: Describe your idea
description: A concise description of what you want to happen.
placeholder: "In this state ...,\nWhen I do this ... then ..."
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives
description: Describe alternatives you have considered.
placeholder: A different option could be ...
- type: textarea
id: context
attributes:
label: Additional Context
description: 'Give context, link similar implementations, add screenshots.'
placeholder: My idea came from using xy

Loading