Skip to content

Commit 4ed7c73

Browse files
authored
GH-21: Add issue template (#37)
Fixes GH-21 These files are copied from apache/arrow with component options removed.
1 parent bf4978d commit 4ed7c73

File tree

4 files changed

+131
-0
lines changed

4 files changed

+131
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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: File a bug report
20+
labels: ["Type: bug"]
21+
assignees: []
22+
body:
23+
- type: textarea
24+
id: description
25+
attributes:
26+
label: Describe the bug, including details regarding any error messages, version, and platform.
27+
description: Please include what you expected.
28+
validations:
29+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
blank_issues_enabled: false
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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: Enhancement Request
19+
description: Request an enhancement to the project
20+
labels: ["Type: enhancement"]
21+
assignees: []
22+
body:
23+
- type: markdown
24+
attributes:
25+
value: |
26+
Thanks for taking the time to share your feedback on ways Apache Arrow can be improved!
27+
- type: textarea
28+
id: description
29+
attributes:
30+
label: Describe the enhancement requested
31+
validations:
32+
required: true
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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: Usage Question
19+
description: Ask a question
20+
labels: ["Type: usage"]
21+
assignees: []
22+
body:
23+
- type: markdown
24+
attributes:
25+
value: >
26+
While we enable issues as a mechanism for new contributors and passers-by who
27+
are unfamiliar with Apache Software Foundation projects to ask questions and
28+
interact with the project, we encourage users to ask such questions on public
29+
mailing lists:
30+
31+
* Development discussions: [email protected] (first subscribe by sending an
32+
e-mail to [email protected]).
33+
34+
* User discussions: [email protected] (first subscribe by sending an e-mail
35+
36+
37+
* Mailing list archives: https://arrow.apache.org/community/
38+
39+
40+
Do not be surprised by responses to issues raised here directing you to those
41+
mailing lists, or to report a bug or feature request here.
42+
43+
44+
Thank you!
45+
- type: textarea
46+
id: description
47+
attributes:
48+
label: >
49+
Describe the usage question you have. Please include as many useful details as
50+
possible.
51+
validations:
52+
required: true

0 commit comments

Comments
 (0)