Skip to content

Commit

Permalink
env: issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Illusion47586 committed Jun 28, 2022
1 parent 2edb4e7 commit 213913d
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
@@ -0,0 +1,68 @@
name: Bug Report
description: File a bug report
title: '[Bug]: '
labels: ['bug', 'triage']
assignees:
- illusion47586
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: dropdown
id: where
attributes:
label: Process where you encountered the bug
description: For issues that do not use native features and are more related to Pluto/Julia, please report them to there respective repos.
options:
- Software Installation
- Julia Installation
- Pluto Installation
- Opening a file
- Moving a file
- Exporting a file
- Something else
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: 'A bug happened!'
validations:
required: true
- type: dropdown
id: version
attributes:
label: Version
description: What version of our software are you running?
options:
- 0.0.1-alpha (Default)
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output from C:\Users\{USER_NAME}\AppData\Roaming\pluto\logs\main.log
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
validations:
required: true
- type: textarea
id: config
attributes:
label: Relevant output from C:\Users\{USER_NAME}\AppData\Roaming\pluto\config.json
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. If no file created, please type NA.
render: json
validations:
required: true
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
@@ -0,0 +1,58 @@
name: Feature Request
description: Request for a new feature
title: '[Feature]: '
labels: ['feature-request', 'enhancement']
assignees:
- illusion47586
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request!
- type: dropdown
id: where
attributes:
label: In which process do you want a new feature?
description: For features that do not use native features and are more related to Pluto/Julia, please report them to there respective repos.
options:
- Software Installation
- Julia Installation
- Pluto Installation
- Opening a file
- Moving a file
- Exporting a file
- Something else
validations:
required: true
- type: textarea
id: feature
attributes:
label: Feature / Improvement
description: You can use images to explain better.
validations:
required: true
- type: dropdown
id: version
attributes:
label: Version
description: What version of our software are you running?
options:
- 0.0.1-alpha (Default)
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output from C:\Users\{USER_NAME}\AppData\Roaming\pluto\logs\main.log
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
validations:
required: false
- type: textarea
id: config
attributes:
label: Relevant output from C:\Users\{USER_NAME}\AppData\Roaming\pluto\config.json
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. If no file created, please type NA.
render: json
validations:
required: false

0 comments on commit 213913d

Please sign in to comment.