-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from your-papa/issue_templates
feat: add issue templates
- Loading branch information
Showing
2 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|