Copilot commented on code in PR #7873:
URL: https://github.com/apache/incubator-seata/pull/7873#discussion_r2633208625
##########
.github/workflows/build.yml:
##########
@@ -119,7 +119,7 @@ jobs:
# job 2: Build and Release on 'arm64v8/ubuntu' OS (Skip tests).
build_arm64-binary:
runs-on: ubuntu-24.04-arm
- if: ${{ github.event_name == 'push' && (github.ref_name == 'develop' ||
github.ref_name == 'snapshot' || github.ref_name == '2.x') }}
+# if: ${{ github.event_name == 'push' && (github.ref_name == 'develop' ||
github.ref_name == 'snapshot' || github.ref_name == '2.x') }}
Review Comment:
This conditional restriction for the build_arm64-binary job has been
commented out, which means the job will now run on all branches and pull
requests. This change is not mentioned in the PR description and appears
unrelated to the JaCoCo version upgrade. If this is intentional, it should be
documented in the PR description. If it's unintentional, the condition should
be restored.
```suggestion
if: ${{ github.event_name == 'push' && (github.ref_name == 'develop' ||
github.ref_name == 'snapshot' || github.ref_name == '2.x') }}
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]