Skip to content

Commit a4eb49e

Browse files
authored
chore: add issue templates (#36)
## What's Changed This is based on templates in apache/arrow-js: https://github.com/apache/arrow-js/tree/main/.github/ISSUE_TEMPLATE Closes #6.
1 parent 36e45ef commit a4eb49e

File tree

4 files changed

+129
-0
lines changed

4 files changed

+129
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
type: Bug
21+
body:
22+
- type: textarea
23+
id: description
24+
attributes:
25+
label: Describe the bug, including details regarding any error messages, version, and platform.
26+
description: Please include what you expected.
27+
validations:
28+
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: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
type: Feature
21+
body:
22+
- type: markdown
23+
attributes:
24+
value: |
25+
Thanks for taking the time to share your feedback on ways Apache Arrow Swift can be improved!
26+
- type: textarea
27+
id: description
28+
attributes:
29+
label: Describe the enhancement requested
30+
validations:
31+
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+
body:
21+
- type: markdown
22+
attributes:
23+
value: >
24+
While we enable issues as a mechanism for new contributors and passers-by who
25+
are unfamiliar with Apache Software Foundation projects to ask questions and
26+
interact with the project, we encourage users to ask such questions on public
27+
mailing lists or GitHub discussions:
28+
29+
* GitHub discussions: https://github.com/apache/arrow-swift/discussions
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)