Copilot commented on code in PR #1842:
URL: https://github.com/apache/auron/pull/1842#discussion_r2667187936
##########
.github/labeler.yml:
##########
@@ -16,69 +16,120 @@
#
infra:
- - ".github/**"
- - ".asf.yaml"
- - ".rat-excludes"
- - ".gitattributes"
- - ".gitignore"
- - ".gitmodules"
+ - changed-files:
+ - any-glob-to-any-file: [
+ ".github/**/*",
Review Comment:
The glob pattern `.github/**/*` is inconsistent with other patterns in this
file and different from the original `.github/**` pattern. The trailing `/*` is
unnecessary and could potentially cause matching issues. All other directory
patterns in this file use the `**` suffix without the trailing `/*` (e.g.,
`build/**`, `common/**`, `auron-core/**`). This should be changed to
`.github/**` to match the original pattern and maintain consistency with the
rest of the file.
```suggestion
".github/**",
```
--
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]