Skip to content

Commit

Permalink
misc: add issue & pr templates
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodrr committed Sep 1, 2022
1 parent 09a5d77 commit feaed3d
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Bug Report
description: Are you facing a bug or a crash in Notesnook?
labels: ["Type: Bug", "Status: Pending"]
assignees:
- thecodrr
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: Tell us what you were trying to do & what happened
validations:
required: true
- type: textarea
id: reproduction-steps
attributes:
label: Steps to reproduce the problem
description: If we can reproduce it, we can fix it
validations:
required: true
- type: input
id: version
attributes:
label: Version
description: What version of Notesnook are you using?
placeholder: v1.8.10 etc
validations:
required: true
- type: dropdown
id: platform
attributes:
label: Platform/OS
description: What platform are you seeing the problem on?
multiple: true
options:
- Windows
- macOS
- Linux
- iOS
- Android
- Chrome/Chromium
- Firefox
- Safari
- Other browser
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
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: Notesnook Discord Community
url: https://discord.gg/6mHHyncHJE
about: Reach out to us directly & discuss your issues, suggestions & other feedback!
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Feature request
description: Suggest a feature you are missing in Notesnook
labels: ["Type: Feature Request", "Status: Pending"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to suggest this idea!
- type: textarea
id: problem
attributes:
label: What problem are you facing?
description: Also tell us how this idea will fix the problem & what's the use case.
placeholder: e.g. I'm always frustrated when...
validations:
required: true
- type: textarea
id: solution
attributes:
label: What's the solution you'd like to see in Notesnook?
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: What alternatives have you considered?
- type: textarea
id: general
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.

0 comments on commit feaed3d

Please sign in to comment.