We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Update binary compatibility
1 parent 15f61f6 commit 52ebef6Copy full SHA for 52ebef6
.github/workflows/ci-pulls.yml
@@ -17,6 +17,15 @@ jobs:
17
distribution: 'zulu'
18
java-version: 17
19
20
+ - name: Update binary compatibility
21
+ if: ${{ github.event.label.name == 'update-legacy-abi' }}
22
+ run: |
23
+ ./gradlew updateLegacyAbi
24
+ git config --global user.name 'GitHub Action Bot'
25
+ git config --global user.email '[email protected]'
26
+ git commit -am "[CI] Update Legacy ABI"
27
+ git push
28
+
29
- name: Binary compatibility validation
30
run: ./gradlew checkLegacyAbi
31
0 commit comments