Skip to content
Merged
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
45 changes: 39 additions & 6 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@ body:
id: bug-description
attributes:
label: Description of the bug
placeholder: Describe what bug you encountered and what should have happened
placeholder: Describe what bug you encountered and what should have happened.
value: "A bug happened!"
validations:
required: true

- type: textarea
id: steps-to-reproduce
attributes:
label: Steps To Reproduce
placeholder: |
description: |
Please write the steps in a list form e.g.:
* Install this package...
* Run this input file (attached)
Expand All @@ -47,6 +48,22 @@ body:
```
* Check obtained error...

value: |
Steps:
* First I did...
* ...

And I ran the following code:

```py

from ansys.mapdl.core import launch_mapdl
mapdl = launch_mapdl()

# Insert your code here

```

validations:
required: true

Expand Down Expand Up @@ -85,10 +102,18 @@ body:
attributes:
label: PyMAPDL Report
description: Run `python -c "from ansys.mapdl import core as pymapdl; print(pymapdl.Report())"` to get the PyMAPDL Report
placeholder: |
value: |
<details><summary>
Show the Report!
</summary>

```text
Paste the output of `python -c "from ansys.mapdl import core as pymapdl; print(pymapdl.Report())"` here

# PASTE HERE THE OUTPUT OF `python -c "from ansys.mapdl import core as pymapdl; print(pymapdl.Report())"` here

```
</details>

validations:
required: true

Expand All @@ -97,9 +122,17 @@ body:
attributes:
label: Installed packages
description: Run `python -m pip freeze` to list installed packages
placeholder: |
value: |
<details><summary>
Show the installed packages!
</summary>

```text
Paste the output of `python -m pip freeze` here

# PASTE HERE THE OUTPUT OF `python -m pip freeze` here

```
</details>

validations:
required: true