Skip to content

Commit

Permalink
Add issue templates (#869)
Browse files Browse the repository at this point in the history
Co-authored-by: blagoev <[email protected]>
  • Loading branch information
nirinchev and blagoev authored Aug 29, 2022
1 parent da29926 commit 77e7305
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 0 deletions.
77 changes: 77 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: [Bug]
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 did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: textarea
id: repro-steps
attributes:
label: Repro steps
description: If you can reproduce the issue, please provide detailed repro steps here or provide a link to a repro project.
placeholder: 1. X, 2. Y, 3. Crash!
validations:
required: true
- type: input
id: version
attributes:
label: Version
description: What version of the Dart/Flutter SDK are you using?
validations:
required: true
- type: dropdown
id: flavour
attributes:
label: What Realm SDK flavor are you using?
options:
- MongoDB Atlas (i.e. Sync, auth, functions)
- Local Database only
validations:
required: true
- type: dropdown
id: app-type
attributes:
label: What type of application is this?
options:
- Flutter Application
- Dart standalone application
- Other
validations:
required: true
- type: input
id: client-platforms
attributes:
label: Client OS and version
description: What Client OS and version are you seeing the issue on?
validations:
required: true
- type: textarea
id: code-snippets
attributes:
label: Code snippets
description: Please provide a code sample or test case that highlights the issue. If relevant, include your model definitions.
placeholder: Your code here
- type: textarea
id: stacktrace
attributes:
label: Stacktrace of the exception/crash you're getting
description: If you're getting an exception or a crash, please paste the stacktrace here.
render: shell
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output.
render: shell
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: General Questions and Inquiries
url: https://www.mongodb.com/community/forums/tags/c/atlas-app-services-realm/realm/58/flutter
about: Please ask general design/architecture questions in the community forums.
- name: MongoDB Atlas (Device Sync) Production Issues
url: https://support.mongodb.com/
about: Please report urgent production issues to the support portal directly.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Feature Request
description: Request a new feature or enhancement
labels: [Enhancement]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to suggest improvements to the Realm Flutter and Dart SDK!
- type: textarea
id: description
attributes:
label: Description
description: Tell us, what you would like to improve?
placeholder: Describe your improvement...
validations:
required: true
- type: dropdown
id: importance
attributes:
label: How important is this improvement for you?
options:
- Dealbreaker
- Would be a major improvement
- I'd like to see it, but have a workaround
- Fairly niche, but nice to have anyway

0 comments on commit 77e7305

Please sign in to comment.