Copilot commented on code in PR #3882:
URL: https://github.com/apache/texera/pull/3882#discussion_r2425034932
##########
.github/workflows/github-action-build.yml:
##########
@@ -105,7 +105,7 @@ jobs:
uses: sbt/setup-sbt@v1
- uses: coursier/cache-action@v6
with:
- extraSbtFiles: '["core/*.sbt", "core/project/**.{scala,sbt}",
"core/project/build.properties" ]'
+ extraSbtFiles: '["*.sbt", "project/**.{scala,sbt}",
"project/build.properties" ]'
Review Comment:
The SBT file patterns have been changed from `core/*` to relative paths, but
this may not correctly reference the new `common` directory structure. The
patterns should likely be `common/*.sbt` and `common/project/**` to maintain
the same functionality after the rename.
```suggestion
extraSbtFiles: '["common/*.sbt", "common/project/**",
"common/project/build.properties" ]'
```
--
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]