lntutor commented on code in PR #3221: URL: https://github.com/apache/sedona/pull/3221#discussion_r3691645461
########## .github/ISSUE_TEMPLATE/bug_report.yml: ########## @@ -0,0 +1,96 @@ +# 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: Report unexpected behavior in Apache Sedona +title: '' +labels: + - bug +assignees: [] +body: + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: Describe what you expected to happen. + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual behavior + description: Describe what happened instead. + validations: + required: true + - type: textarea + id: reproduction-steps + attributes: + label: Steps to reproduce + description: Provide a minimal example or the exact steps that reproduce the problem. Review Comment: Addressed in 686f0eac. The reproduction field now uses shell rendering, and the form includes a required confirmation that the reporter searched existing issues. ########## .github/ISSUE_TEMPLATE/bug_report.yml: ########## @@ -0,0 +1,96 @@ +# 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: Report unexpected behavior in Apache Sedona +title: '' +labels: + - bug +assignees: [] +body: + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: Describe what you expected to happen. + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual behavior + description: Describe what happened instead. + validations: + required: true + - type: textarea + id: reproduction-steps + attributes: + label: Steps to reproduce + description: Provide a minimal example or the exact steps that reproduce the problem. + validations: + required: true + - type: input + id: sedona-version + attributes: + label: Sedona version + placeholder: e.g. 1.8.0 + validations: + required: true + - type: input + id: spark-version + attributes: + label: Apache Spark version + placeholder: e.g. 3.5.5 + - type: input + id: flink-version + attributes: + label: Apache Flink version + placeholder: e.g. 1.20.1 + - type: dropdown + id: api-type + attributes: + label: API type + options: + - Scala + - Java + - Python + - Other Review Comment: Addressed in 686f0eac. The API dropdown now offers Scala, Java, Python, SQL, R, and Other. -- 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]
