Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add issue templates #2355

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions .github/ISSUE_TEMPLATE/01-bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Bug Report
description: File a bug report.
labels: ["bug"]
projects: ["TuringLang/3"]

body:
- type: markdown
attributes:
value: |
Thank you for submitting a bug report to Turing.jl!

To make sure we can pinpoint the issue and fix it as quickly as possible, we ask you to provide some information about the bug you encountered. Please fill out the form below.

- type: textarea
id: mwe
attributes:
label: Minimal working example
description: Paste the code that led to the bug here. Ideally, simplify it as much as possible. This will be formatted as Julia code, so no need for backticks.
render: julia
validations:
required: true

- type: textarea
id: description
attributes:
label: Description
description: Describe the bug you encountered – what happened, and what did you expect to happen?
validations:
required: true

- type: textarea
id: versioninfo
attributes:
label: Julia version info
description: Paste the output of `versioninfo()` between the triple backticks
value: |
<details><summary>versioninfo()</summary>

```
(Paste here)
```
</details>
validations:
required: true

- type: textarea
id: manifest
attributes:
label: Manifest
description: Paste the output of `]st --manifest` between the triple backticks.
value: |
<details><summary>]st --manifest</summary>

```
(Paste here)
```
</details>
validations:
required: true
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
Loading