Skip to content

Commit 1b1d024

Browse files
committed
GitHub: Add issue template
Signed-off-by: Shizuo Fujita <fujita@clear-code.com>
1 parent 05a9c38 commit 1b1d024

File tree

3 files changed

+114
-0
lines changed

3 files changed

+114
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Bug Report
2+
description: Create a report with a procedure for reproducing the bug
3+
labels: "waiting-for-triage"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Please check the [README](https://github.com/fluent/fluent-plugin-mongo/blob/master/README.md) first. To help us investigate the problem, please provide the following information.
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Describe the bug
13+
description: A clear and concise description of what the bug is
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: reproduce
18+
attributes:
19+
label: To Reproduce
20+
description: Steps to reproduce the behavior
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: expected
25+
attributes:
26+
label: Expected behavior
27+
description: A clear and concise description of what you expected to happen
28+
validations:
29+
required: true
30+
- type: textarea
31+
id: environment
32+
attributes:
33+
label: Your Environment
34+
description: |
35+
- Fluentd or td-agent version: `fluentd --version` or `td-agent --version`
36+
- Operating system: `cat /etc/os-release`
37+
- Kernel version: `uname -r`
38+
39+
Tip: If you hit the problem with older fluentd version, try latest version first.
40+
value: |
41+
- Fluentd version:
42+
- TD Agent version:
43+
- fluent-plugin-mongo version:
44+
- Operating system:
45+
- Kernel version:
46+
render: markdown
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: configuration
51+
attributes:
52+
label: Your Configuration
53+
description: |
54+
Write your configuration here. Minimum reproducible fluentd.conf is recommended.
55+
validations:
56+
required: true
57+
- type: textarea
58+
id: logs
59+
attributes:
60+
label: Your Error Log
61+
description: Write your ALL error log here
62+
render: shell
63+
validations:
64+
required: true
65+
- type: textarea
66+
id: addtional-context
67+
attributes:
68+
label: Additional context
69+
description: Add any other context about the problem here.
70+
validations:
71+
required: false

.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: false
2+
contact_links:
3+
- name: Ask a Question
4+
url: https://discuss.fluentd.org/
5+
about: I have questions about fluent-plugin-mongo. Please ask and answer questions at https://discuss.fluentd.org/.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
labels: "waiting-for-triage"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Please check the [README](https://github.com/fluent/fluent-plugin-mongo/blob/master/README.md) first. To help us understand the request, please provide the following information.
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Is your feature request related to a problem? Please describe.
13+
description: |
14+
A clear and concise description of what the problem is.
15+
Ex. I'm always frustrated when [...]
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: solution
20+
attributes:
21+
label: Describe the solution you'd like
22+
description: A clear and concise description of what you want to happen.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternative
27+
attributes:
28+
label: Describe alternatives you've considered
29+
description: A clear and concise description of any alternative solutions or features you've considered.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: addtional-context
34+
attributes:
35+
label: Additional context
36+
description: Add any other context or screenshots about the feature request here.
37+
validations:
38+
required: false

0 commit comments

Comments
 (0)