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


##########
.github/labeler.yml:
##########
@@ -20,13 +20,15 @@ gui:
           - 'core/gui/**'
 
 backend:
-  - changed-files:
-      - any-glob-to-any-file:
-          - 'core/**'
-      - all-globs-to-all-files:
-          - '!core/gui/**'
-          - '!core/log/**'
-          - '!core/scripts/**'
+  - all
+    - changed-files:
+        - any-glob-to-any-file:
+            - 'core/**'
+        - all-globs-to-all-files:
+            - '!core/gui/**'
+            - '!core/log/**'
+            - '!core/scripts/**'

Review Comment:
   The indentation is inconsistent. The `- all` should be indented to align 
with the `changed-files` items below it, or the `changed-files` block should be 
properly nested under the `all` condition.
   ```suggestion
     - all:
         - changed-files:
             - any-glob-to-any-file:
                 - 'core/**'
             - all-globs-to-all-files:
                 - '!core/gui/**'
                 - '!core/log/**'
                 - '!core/scripts/**'
   ```



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