Skip to content

Commit 49de389

Browse files
committed
[GR-73128] Github issue templates
PullRequest: graalpython/4258
2 parents d7044f2 + ba7009e commit 49de389

2 files changed

Lines changed: 114 additions & 0 deletions

File tree

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
name: Bug Report
2+
description: Create an issue to report a bug.
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: textarea
7+
id: bug
8+
attributes:
9+
label: Describe the bug
10+
description: A clear and concise description of what the bug is.
11+
validations:
12+
required: true
13+
14+
- type: markdown
15+
attributes:
16+
value: "## Environment"
17+
18+
- type: dropdown
19+
id: os
20+
attributes:
21+
label: Operating system
22+
options:
23+
- Linux
24+
- Windows
25+
- macOS
26+
validations:
27+
required: true
28+
29+
- type: dropdown
30+
id: arch
31+
attributes:
32+
label: CPU architecture
33+
options:
34+
- x86_64
35+
- ARM64
36+
validations:
37+
required: true
38+
39+
- type: input
40+
id: graalpy_version
41+
attributes:
42+
label: GraalPy version
43+
validations:
44+
required: true
45+
46+
- type: markdown
47+
attributes:
48+
value: "## Java embedding (optional)"
49+
50+
- type: input
51+
id: jdk_version
52+
attributes:
53+
label: JDK version
54+
55+
- type: textarea
56+
id: context_config
57+
attributes:
58+
label: Context configuration
59+
description: How the Context is configured (share a code snippet if possible)
60+
61+
- type: textarea
62+
id: steps
63+
attributes:
64+
label: Steps to reproduce
65+
description: Steps to reproduce the behavior.
66+
validations:
67+
required: true
68+
69+
- type: textarea
70+
id: expected
71+
attributes:
72+
label: Expected behavior
73+
description: A clear and concise description of what you expected to happen.
74+
validations:
75+
required: true
76+
77+
- type: textarea
78+
id: stack
79+
attributes:
80+
label: Stack trace
81+
description: If applicable, please share the stack trace.
82+
render: shell
83+
84+
- type: textarea
85+
id: extra
86+
attributes:
87+
label: Additional context
88+
description: Add any other context about the problem here.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Feature Request
2+
description: Create an issue to request a feature
3+
title: "[Feature Request]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: textarea
7+
id: feature_request
8+
attributes:
9+
label: Describe the feature
10+
description: A clear and concise description of what the feature is.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: expected
16+
attributes:
17+
label: Expected behavior
18+
description: A clear and concise description of what you expect to happen.
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: extra
24+
attributes:
25+
label: Additional context
26+
description: Add any other context about the feature here.

0 commit comments

Comments
 (0)