Skip to content

Commit

Permalink
Merge pull request #249 from cncastillo/template-for-issues
Browse files Browse the repository at this point in the history
Create Template for Issues
  • Loading branch information
cncastillo authored Dec 15, 2023
2 parents aa23d0c + c71fdbb commit 4bc16c7
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
We use the GitHub issue tracker for bug reports and feature requests only.
If you're experiencing a problem with a particular package, open an issue on that package's repository instead.
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Please describe the steps you took and provide any code executed to reproduce the bug, as well as any error messages that were printed.
placeholder: |
I executed this function:
```julia
[...]
````
and encountered the following error/wrong/unexpected result:

[...]
validations:
required: true
- type: textarea
id: version
attributes:
label: Version
description: What version of KomaMRI are you running?
placeholder: Output of `using Pkg; [println("$(pkg.name) $(pkg.version)") for (_, pkg) in Pkg.dependencies() if occursin("KomaMRI", pkg.name)];`
render: Julia
validations:
required: true
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Feature Request
about: Suggest a new KomaMRI feature
title: '[FR]: '
labels: feature
---

<!--
Your feature may already be requested!
Please search on the issue tracker before creating a new issue.
-->

0 comments on commit 4bc16c7

Please sign in to comment.