Skip to content

Commit b7bf99e

Browse files
committed
Adde issue templates
1 parent 93c324f commit b7bf99e

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[BUG]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
11+
- type: input
12+
id: contact
13+
attributes:
14+
label: Contact Details [Optional]
15+
description: How can we get in touch with you if we need more info?
16+
placeholder: [email protected]
17+
validations:
18+
required: false
19+
20+
- type: textarea
21+
id: system-information
22+
attributes:
23+
label: System Information
24+
description: python -c "import zenml.environment; print(zenml.environment.get_system_details())"
25+
placeholder: "Copy paste the output of the above command here. If using ZenML version < 0.8.0, then paste in Python version, OS, ZenML version, and installed integrations."
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: what-happened
31+
attributes:
32+
label: What happened?
33+
description: Also tell us, what did you expect to happen?
34+
placeholder: A clear and concise description of what the bug is.
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: reproduce
40+
attributes:
41+
label: Reproduction steps
42+
description: "How do you trigger this bug? Please walk us through it step by step."
43+
value: |
44+
1.
45+
2.
46+
3.
47+
...
48+
validations:
49+
required: false
50+
51+
- type: textarea
52+
id: logs
53+
attributes:
54+
label: Relevant log output
55+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
56+
render: shell
57+
58+
- type: checkboxes
59+
id: terms
60+
attributes:
61+
label: Code of Conduct
62+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
63+
options:
64+
- label: I agree to follow this project's Code of Conduct
65+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Feature Request
4+
url: https://zenml.io/discussion
5+
about: Request a new feature.
6+
- name: Slack Channel
7+
url: https://zenml.io/slack-invite/
8+
about: Chat with us directly here.
9+
- name: Docs
10+
url: https://docs.zenml.io/
11+
about: Read the docs to answer most commonly asked questions.

0 commit comments

Comments
 (0)