Skip to content
Open
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
88 changes: 88 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: Bug Report
description: Create an issue to report a bug.
title: "[Bug]: "
labels: ["bug"]
body:
- type: textarea
id: bug
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
required: true

- type: markdown
attributes:
value: "## Environment"

- type: dropdown
id: os
attributes:
label: Operating system
options:
- Linux
- Windows
- macOS
validations:
required: true

- type: dropdown
id: arch
attributes:
label: CPU architecture
options:
- x86_64
- ARM64
validations:
required: true

- type: input
id: graalpy_version
attributes:
label: GraalPy version
validations:
required: true

- type: markdown
attributes:
value: "## Java embedding (optional)"

- type: input
id: jdk_version
attributes:
label: JDK version

- type: textarea
id: context_config
attributes:
label: Context configuration
description: How the Context is configured (share a code snippet if possible)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How the Context -> How the context


- type: textarea
id: steps
attributes:
label: Steps to reproduce
description: Steps to reproduce the behavior.
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
validations:
required: true

- type: textarea
id: stack
attributes:
label: Stack trace
description: If applicable, please share the stack trace.
render: shell

- type: textarea
id: extra
attributes:
label: Additional context
description: Add any other context about the problem here.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Feature Request
description: Create an issue to request a feature
title: "[Feature Request]: "
labels: ["enhancement"]
body:
- type: textarea
id: feature_request
attributes:
label: Describe the feature
description: A clear and concise description of what the feature is.
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behavior
description: A clear and concise description of what you expect to happen.
validations:
required: true

- type: textarea
id: extra
attributes:
label: Additional context
description: Add any other context about the feature here.
Loading