You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug.yml
+21-27Lines changed: 21 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name: 🐞 Bug, problem, error
1
+
name: 🐞 Bug, problem, or error
2
2
description: Fill a bug report here
3
3
title: "Bug located in ..."
4
4
labels: ["bug"]
@@ -13,38 +13,36 @@ body:
13
13
- type: checkboxes
14
14
id: new-bug
15
15
attributes:
16
-
label: Before submitting the issue
16
+
label: 🤓 Before submitting the issue
17
17
description: |
18
18
Ensure that the following conditions are met.
19
19
20
-
Visit [Troubleshooting section](https://mapdl.docs.pyansys.com/troubleshoot/index.html) for more information.
21
-
22
20
options:
23
-
- label: I have visited the Troubleshooting section.
21
+
- label: I have visited the [Troubleshooting section](https://mapdl.docs.pyansys.com/troubleshoot/index.html).
24
22
required: true
25
-
- label: I have searched among the existing issues.
23
+
- label: I have searched among the [existing issues](https://github.com/ansys/pymapdl/issues?q=).
26
24
required: true
27
-
- label: I am using a Python virtual environment.
25
+
- label: I am using a [Python virtual environment](https://docs.python.org/3/library/venv.html).
28
26
required: true
29
-
- label: I have a fully updated virtual environment (i.e. ``pip install --upgrade --upgrade-strategy eager ansys-mapdl-core``)
27
+
- label: I am using the [latest version of PyMAPDL](https://github.com/ansys/pymapdl/releases) and its dependencies (fully updated virtual environment). You can update them using ``pip install --upgrade --upgrade-strategy eager ansys-mapdl-core``.
30
28
required: true
31
29
32
30
- type: textarea
33
31
id: bug-description
34
32
attributes:
35
-
label: Description of the bug
33
+
label: 🔍 Description of the bug
36
34
placeholder: Describe what bug you encountered and what should have happened.
37
35
validations:
38
36
required: true
39
37
40
38
- type: textarea
41
39
id: steps-to-reproduce
42
40
attributes:
43
-
label: Steps To Reproduce
41
+
label: 🕵️ Steps To Reproduce
44
42
description: |
45
43
Please write the steps in a list form e.g.:
46
44
* Install this package...
47
-
* Run this input file (attached)
45
+
* Run this input file (Please attach it) and/or
48
46
* Run the following commands:
49
47
```py
50
48
mapdl.command1()
@@ -53,6 +51,8 @@ body:
53
51
```
54
52
* Check obtained error...
55
53
54
+
Use the following text box:
55
+
56
56
value: |
57
57
Steps:
58
58
* First I did...
@@ -79,7 +79,7 @@ body:
79
79
- type: dropdown
80
80
id: os-name
81
81
attributes:
82
-
label: Which Operating System are you using?
82
+
label: 💻 Which Operating System are you using?
83
83
multiple: false
84
84
options:
85
85
- 'Windows'
@@ -91,26 +91,25 @@ body:
91
91
- type: dropdown
92
92
id: python-version
93
93
attributes:
94
-
label: Which Python version are you using?
94
+
label: 🐍 Which Python version are you using?
95
95
description: Run `python --version` to verify your Python version
96
96
multiple: false
97
97
options:
98
98
- '3.7'
99
99
- '3.8'
100
100
- '3.9'
101
101
- '3.10'
102
+
- '3.11'
102
103
validations:
103
104
required: false
104
105
105
106
- type: textarea
106
107
id: pymapdl-report
107
108
attributes:
108
-
label: PyMAPDL Report
109
+
label: 📝 PyMAPDL Report
109
110
description: Run `python -c "from ansys.mapdl import core as pymapdl; print(pymapdl.Report())"` to get the PyMAPDL Report
110
111
value: |
111
-
<details><summary>
112
-
Show the Report!
113
-
</summary>
112
+
<details><summary>Show the Report!</summary>
114
113
115
114
```text
116
115
@@ -125,12 +124,10 @@ body:
125
124
- type: textarea
126
125
id: installed-packages
127
126
attributes:
128
-
label: Installed packages
127
+
label: 📝 Installed packages
129
128
description: Run `python -m pip freeze` to list installed packages
130
129
value: |
131
-
<details><summary>
132
-
Show the installed packages!
133
-
</summary>
130
+
<details><summary>Show the installed packages!</summary>
134
131
135
132
```text
136
133
@@ -145,16 +142,13 @@ body:
145
142
- type: textarea
146
143
id: logger_log
147
144
attributes:
148
-
label: Logger output file
145
+
label: 📝 Logger output file
149
146
description: |
150
147
Attach the logger output file. For more information on how to set the logger and
151
-
attach its output file, see the [Troubleshooting section]
0 commit comments