Copilot commented on code in PR #3918:
URL: https://github.com/apache/texera/pull/3918#discussion_r2438110032


##########
.github/ISSUE_TEMPLATE/task-template.yaml:
##########
@@ -0,0 +1,67 @@
+# 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: Task
+description: Create a new development or maintenance task.
+labels: ["triage"]
+type: "Task"

Review Comment:
   The `type` field is not a valid GitHub issue template property. GitHub issue 
templates only support `name`, `description`, `title`, `labels`, `assignees`, 
`body`, and `projects`. This field should be removed as it has no effect.
   ```suggestion
   
   ```



##########
.github/ISSUE_TEMPLATE/task-template.yaml:
##########
@@ -0,0 +1,67 @@
+# 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: Task
+description: Create a new development or maintenance task.
+labels: ["triage"]
+type: "Task"
+body:
+  - type: markdown
+    attributes:
+      value: |
+        Thanks for creating a task! Please describe what needs to be done and 
why.
+
+  - type: textarea
+    id: task-summary
+    attributes:
+      label: Task Summary
+      description: Briefly describe what needs to be done, try to do a single 
step in a task.
+      placeholder: Example — Refactor workflow scheduler module for better 
modularity.
+    validations:
+      required: true
+
+  - type: dropdown
+    id: priority
+    attributes:
+      label: Priority
+      description: How urgent or important is this task?
+      options:
+        - P0 – Critical
+        - P1 – High
+        - P2 – Medium
+        - P3 – Low
+      default: 2
+
+  - type: checkboxes
+    id: checklist
+    attributes:
+      label: Task Type
+      description: Select the type of work involved.
+      options:
+        - label: Code Implementation
+        - label: Documentation
+        - label: Refactor / Cleanup
+        - label: Testing / QA
+        - label: DevOps / Deployment
+
+  - type: checkboxes
+    id: terms
+    attributes:
+      label: Code of Conduct
+      description: By submitting this issue, you agree to follow [Apache Code 
of Conduct](https://www.apache.org/foundation/policies/conduct).

Review Comment:
   Corrected article usage from 'follow [Apache Code of Conduct]' to 'follow 
the [Apache Code of Conduct]'.
   ```suggestion
         description: By submitting this issue, you agree to follow the [Apache 
Code of Conduct](https://www.apache.org/foundation/policies/conduct).
   ```



-- 
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]

Reply via email to