Skip to content

Commit 39d3d72

Browse files
Add bug report issue template (#7)
1 parent 6cd205b commit 39d3d72

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
name: Bug report
19+
description: Problems with the software
20+
title: "[Bug] "
21+
labels: ["type/bug"]
22+
body:
23+
- type: markdown
24+
attributes:
25+
value: |
26+
Thank you very much for your feedback!
27+
28+
For suggestions or help, please consider:
29+
1. [Dev Mail List](mailto:[email protected]) ([subscribe](mailto:[email protected])): This will be your FASTEST way to get help!
30+
- type: checkboxes
31+
attributes:
32+
label: Search before asking
33+
description: >
34+
Please search [issues](https://github.com/apache/pulsar-client-cpp/issues) to check if your issue has already been reported.
35+
options:
36+
- label: >
37+
I searched in the [issues](https://github.com/apache/pulsar-client-cpp/issues) and found nothing similar.
38+
required: true
39+
- type: textarea
40+
attributes:
41+
label: Version
42+
description: >
43+
Please provide the OS and Pulsar version you are using. If you are using the main branch, please provide the commit id.
44+
validations:
45+
required: true
46+
- type: textarea
47+
attributes:
48+
label: Minimal reproduce step
49+
description: Please try to give reproducing steps to facilitate quick location of the problem.
50+
validations:
51+
required: true
52+
- type: textarea
53+
attributes:
54+
label: What did you expect to see?
55+
validations:
56+
required: true
57+
- type: textarea
58+
attributes:
59+
label: What did you see instead?
60+
validations:
61+
required: true
62+
- type: textarea
63+
attributes:
64+
label: Anything else?
65+
- type: checkboxes
66+
attributes:
67+
label: Are you willing to submit a PR?
68+
description: >
69+
We look forward to the community of developers or users helping solve Pulsar problems together. If you are willing to submit a PR to fix this problem, please check the box.
70+
options:
71+
- label: I'm willing to submit a PR!
72+
- type: markdown
73+
attributes:
74+
value: "Thanks for completing our form!"

0 commit comments

Comments
 (0)