Skip to content

Commit

Permalink
Add issue templates (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev authored Mar 7, 2024
1 parent 4b0cb24 commit c7c768f
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
87 changes: 87 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: Bug Report
description: File a bug report
labels: [T-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 C++ SDK are you using?
placeholder: e.g. 0.6.1-preview
validations:
required: true
- type: input
id: install-method
attributes:
label: Installation method
description: How are you installing the C++ SDK?
placeholder: e.g. CMake 3.15
validations:
required: true
- type: dropdown
id: services
attributes:
label: What Atlas Services are you using?
options:
- -- select --
- Local Database only
- Atlas Device Sync
- 'Atlas App Services: Functions or GraphQL or DataAPI etc'
- Both Atlas Device Sync and Atlas App Services
validations:
required: true
- type: input
id: compiler
attributes:
label: Compiler
description: What compiler are you using?
placeholder: e.g. Clang 16.0.6
validations:
required: true
- type: input
id: client-platforms
attributes:
label: OS and version
description: What OS (name and version) are you seeing the issue on?
placeholder: e.g. Ubuntu 18.04
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/cxx
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.

0 comments on commit c7c768f

Please sign in to comment.