Skip to content

Commit da8f381

Browse files
authored
Merge pull request #288 from intelligentfu8/issue_template
[opt] issue template
2 parents a0ab6a1 + cf6997b commit da8f381

File tree

5 files changed

+323
-0
lines changed

5 files changed

+323
-0
lines changed
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# 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, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
name: Doris Operator Bug report
19+
title: "[Bug] "
20+
description: Problems and issues with code of Apache Doris Operator
21+
labels: ["kind/bug"]
22+
body:
23+
- type: markdown
24+
attributes:
25+
value: |
26+
Thank you very much for submitting feedback to Doris Operator to help Doris Operator develop better.
27+
28+
If it is an idea or help wanted, please go to:
29+
30+
1. [Dev Mail List](mailto:[email protected]): This will be your FASTEST way to get help![How to subscribe](mailto:[email protected])
31+
2. [Github Discussion](https://github.com/apache/doris-operator/discussions)
32+
33+
- type: checkboxes
34+
attributes:
35+
label: Search before asking
36+
description: >
37+
Please make sure to search in the [issues](https://github.com/apache/doris-operator/issues?q=is%3Aissue) first to see
38+
whether the same issue was reported already.
39+
options:
40+
- label: >
41+
I had searched in the [issues](https://github.com/apache/doris-operator/issues?q=is%3Aissue) and found no similar
42+
issues.
43+
required: true
44+
45+
- type: textarea
46+
attributes:
47+
label: Version
48+
description: What is the current version
49+
placeholder: >
50+
Please provide the version you are using.
51+
If it is the trunk version, please input commit id.
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
attributes:
57+
label: What's Wrong?
58+
description: Describe the bug.
59+
placeholder: >
60+
Describe the specific problem, the more detailed the better.
61+
validations:
62+
required: true
63+
64+
- type: textarea
65+
attributes:
66+
label: What You Expected?
67+
validations:
68+
required: true
69+
70+
- type: textarea
71+
attributes:
72+
label: How to Reproduce?
73+
placeholder: >
74+
Please try to give reproducing steps to facilitate quick location of the problem.
75+
76+
- What actions were performed
77+
- Table building statement
78+
- Import statement
79+
- Cluster information: number of nodes, configuration, etc.
80+
81+
If it is hard to reproduce, please also explain the general scene.
82+
83+
- type: textarea
84+
attributes:
85+
label: Anything Else?
86+
87+
- type: checkboxes
88+
attributes:
89+
label: Are you willing to submit PR?
90+
description: >
91+
We very much look forward to developers or users to help solve the Doris Operator problem together.
92+
If you are willing to submit a PR to fix this problem, please tick it.
93+
options:
94+
- label: Yes I am willing to submit a PR!
95+
96+
- type: checkboxes
97+
attributes:
98+
label: Code of Conduct
99+
description: The Code of Conduct helps create a safe space for everyone. We require that everyone agrees to it.
100+
options:
101+
- label: >
102+
I agree to follow this project's
103+
[Code of Conduct](https://www.apache.org/foundation/policies/conduct)
104+
required: true
105+
106+
- type: markdown
107+
attributes:
108+
value: "Thanks for completing our form!"

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# 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, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
blank_issues_enabled: true
19+
contact_links:
20+
- name: Ask a question or get support
21+
url: https://github.com/apache/doris-operator/discussions
22+
about: Ask a question or request support for using Apache Doris Operator
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# 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, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
name: Doris Operator enhancement
19+
description: Add an enhanment for Apache Doris Operator
20+
title: "[Enhancement] "
21+
labels: ["kind/enhancement"]
22+
body:
23+
- type: markdown
24+
attributes:
25+
value: |
26+
Thank you very much for your good enhancement for Doris Operator.
27+
28+
Please help sync to the [Dev Mail List](mailto:[email protected]). You will get FASTER help![How to subscribe](mailto:[email protected])
29+
30+
- type: checkboxes
31+
attributes:
32+
label: Search before asking
33+
description: >
34+
Please make sure to search in the [issues](https://github.com/apache/doris-operator/issues?q=is%3Aissue) first to see
35+
whether the same issue was reported already.
36+
options:
37+
- label: >
38+
I had searched in the [issues](https://github.com/apache/doris-operator/issues?q=is%3Aissue) and found no similar
39+
issues.
40+
required: true
41+
42+
- type: textarea
43+
attributes:
44+
label: Description
45+
description: Describe the enhancement what you want, including motivation if it exists.
46+
47+
- type: textarea
48+
attributes:
49+
label: Solution
50+
placeholder: >
51+
Add overview of proposed solution.
52+
53+
Add related materials like links if they exist.
54+
55+
- type: checkboxes
56+
attributes:
57+
label: Are you willing to submit PR?
58+
description: >
59+
We very much look forward to developers or users to help develop the Doris Operator together.
60+
If you are willing to submit a PR to implement this feature, please tick it.
61+
options:
62+
- label: Yes I am willing to submit a PR!
63+
64+
- type: checkboxes
65+
attributes:
66+
label: Code of Conduct
67+
description: The Code of Conduct helps create a safe space for everyone. We require that everyone agrees to it.
68+
options:
69+
- label: >
70+
I agree to follow this project's
71+
[Code of Conduct](https://www.apache.org/foundation/policies/conduct)
72+
required: true
73+
74+
- type: markdown
75+
attributes:
76+
value: "Thanks for completing our form!"
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# 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, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
name: Doris Operator feature request
18+
description: Suggest an idea for Apache Doris Operator
19+
title: "[Feature] "
20+
labels: ["kind/feature"]
21+
body:
22+
- type: markdown
23+
attributes:
24+
value: |
25+
Thank you very much for your good ideas and suggestions for Doris Operator
26+
27+
Please help sync to the [Dev Mail List](mailto:[email protected]). You will get FASTER help![How to subscribe](mailto:[email protected])
28+
29+
- type: checkboxes
30+
attributes:
31+
label: Search before asking
32+
description: >
33+
Please make sure to search in the [issues](https://github.com/apache/doris-operator/issues?q=is%3Aissue) first to see
34+
whether the same issue was reported already.
35+
options:
36+
- label: >
37+
I had searched in the [issues](https://github.com/apache/doris-operator/issues?q=is%3Aissue) and found no similar
38+
issues.
39+
required: true
40+
41+
- type: textarea
42+
attributes:
43+
label: Description
44+
description: Describe your ideas and needs.
45+
46+
- type: textarea
47+
attributes:
48+
label: Use case
49+
placeholder: >
50+
What problem does this feature mainly solve, or what scenarios it is suitable for.
51+
52+
- type: textarea
53+
attributes:
54+
label: Related issues
55+
description: Is there currently another issue associated with this?
56+
57+
- type: checkboxes
58+
attributes:
59+
label: Are you willing to submit PR?
60+
description: >
61+
We very much look forward to developers or users to help develop the Doris Operator together.
62+
If you are willing to submit a PR to implement this feature, please tick it.
63+
options:
64+
- label: Yes I am willing to submit a PR!
65+
66+
- type: checkboxes
67+
attributes:
68+
label: Code of Conduct
69+
description: The Code of Conduct helps create a safe space for everyone. We require that everyone agrees to it.
70+
options:
71+
- label: >
72+
I agree to follow this project's
73+
[Code of Conduct](https://www.apache.org/foundation/policies/conduct)
74+
required: true
75+
76+
- type: markdown
77+
attributes:
78+
value: "Thanks for completing our form!"

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
### What problem does this PR solve?
2+
3+
Issue Number: close #xxx
4+
5+
Related PR: #xxx
6+
7+
Problem Summary:
8+
9+
### Release note
10+
11+
None
12+
13+
### Check List (For Author)
14+
15+
- Test <!-- At least one of them must be included. -->
16+
- [ ] Regression test
17+
- [ ] Unit Test
18+
- [ ] Manual test (add detailed scripts or steps below)
19+
- [ ] No need to test or manual test. Explain why:
20+
- [ ] This is a refactor/code format and no logic has been changed.
21+
- [ ] Previous test can cover this change.
22+
- [ ] No code files have been changed.
23+
- [ ] Other reason <!-- Add your reason? -->
24+
25+
- Behavior changed:
26+
- [ ] No.
27+
- [ ] Yes. <!-- Explain the behavior change -->
28+
29+
- Does this need documentation?
30+
- [ ] No.
31+
- [ ] Yes. <!-- Add document PR link here. eg: https://github.com/apache/doris-website/pull/1214 -->
32+
33+
### Check List (For Reviewer who merge this PR)
34+
35+
- [ ] Confirm the release note
36+
- [ ] Confirm test cases
37+
- [ ] Confirm document
38+
- [ ] Add branch pick label <!-- Add branch pick label that this PR should merge into -->
39+

0 commit comments

Comments
 (0)