Copilot commented on code in PR #101: URL: https://github.com/apache/arrow-erlang/pull/101#discussion_r3545567189
########## .github/ISSUE_TEMPLATE/usage_question.yml: ########## @@ -0,0 +1,51 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Usage Question +description: Ask a question +body: + - type: markdown + attributes: + value: | + are unfamiliar with Apache Software Foundation projects to ask questions and + interact with the project, we encourage users to ask such questions on public + mailing lists or GitHub discussions: Review Comment: The introductory sentence is grammatically incomplete (starts with “are unfamiliar…” without a subject). Reword to a complete sentence (e.g., start with “If you are unfamiliar…” or “For users who are unfamiliar…”). ########## .github/ISSUE_TEMPLATE/feature_request.yml: ########## @@ -0,0 +1,31 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Enhancement Request +description: Request an enhancement to the project +type: Feature Review Comment: GitHub Issue Forms doesn't support a top-level `type` key (it’s a field type used within `body`, not metadata). This will make the template invalid or partially ignored. Use supported metadata keys like `labels:` (e.g., `labels: [\"Feature\"]`) if the intent is to categorize the issue. ########## .github/ISSUE_TEMPLATE/bug_report.yml: ########## @@ -0,0 +1,28 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Bug Report +description: File a bug report +type: Bug Review Comment: Same issue as the feature request template: `type` isn’t a valid top-level Issue Forms metadata key. If you want bug issues to be labeled automatically, replace this with `labels:` (e.g., `labels: [\"Bug\"]`) or remove it to keep the YAML schema valid. ########## .github/ISSUE_TEMPLATE/usage_question.yml: ########## @@ -0,0 +1,51 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Usage Question +description: Ask a question Review Comment: Optional: consider adding `labels:` (and possibly a default `title:` prefix) so usage questions are easier to triage/filter (especially since `blank_issues_enabled: false` will funnel all intake through templates). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
