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.
1 parent efb8880 commit f265661Copy full SHA for f265661
.github/workflows/build-common.yml
@@ -198,6 +198,8 @@ jobs:
198
run: ./gradlew check spdxSbom -x javadoc -x spotlessCheck -PskipTests=true ${{ inputs.no-build-cache && '--no-build-cache' || '' }}
199
200
- name: Check for jApiCmp diffs
201
+ # The jApiCmp diff compares current to latest, which isn't appropriate for release branches
202
+ if: ${{ !startsWith(github.ref_name, 'release/') && !startsWith(github.base_ref, 'release/') }}
203
run: |
204
# need to "git add" in case any generated files did not already exist
205
git add docs/apidiffs
0 commit comments