Skip to content

Commit 8b99956

Browse files
committed
Add issue templates
1 parent 58a5da8 commit 8b99956

File tree

3 files changed

+67
-0
lines changed

3 files changed

+67
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Bug
2+
description: "Report a bug."
3+
labels: []
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Github is reserved for bug reports and feature requests. If you have a question or
9+
an unconfirmed bug, please visit the [forums](https://discuss.elastic.co/tag/language-clients).
10+
11+
Please fill in the following details to help us reproduce the bug:
12+
13+
- type: input
14+
id: client_version
15+
attributes:
16+
label: Java API client version
17+
description: The version of Java API client
18+
validations:
19+
required: true
20+
21+
- type: input
22+
id: es_version
23+
attributes:
24+
label: Elasticsearch Version
25+
description: The version of Elasticsearch you are using
26+
validations:
27+
required: true
28+
29+
- type: input
30+
id: java_version
31+
attributes:
32+
label: Java version
33+
description: The Java version of your application that uses the Java API client
34+
value: _bundled_
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: problem
40+
attributes:
41+
label: Problem description
42+
description: |
43+
A description of the problem including expected versus actual behavior. Providing JSON snippets of the expected behavior from the
44+
Kibana dev tools console will help diagnosing the issue.
45+
validations:
46+
required: true
47+

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Question
4+
url: https://discuss.elastic.co/tag/language-clients
5+
about: Ask (and answer) questions here.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Feature Request
2+
description: Request a new feature
3+
labels: []
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Please first search existing issues for the feature you are requesting. It may already exist, even as a closed issue.
9+
If it exists, please add a comment: along with subcribing you to the issue, this will help us prioritize features.
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Description
14+
description: |
15+
Please give us as much context as possible about the feature.

0 commit comments

Comments
 (0)