We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8ce712 commit 7d3ac05Copy full SHA for 7d3ac05
.github/workflows/build-common.yml
@@ -191,6 +191,8 @@ jobs:
191
run: ./gradlew check spdxSbom -x javadoc -x spotlessCheck -PskipTests=true ${{ inputs.no-build-cache && '--no-build-cache' || '' }}
192
193
- name: Check for jApiCmp diffs
194
+ # The jApiCmp diff compares current to latest, which isn't appropriate for release branches
195
+ if: ${{ !startsWith(github.ref_name, 'release/') && !startsWith(github.base_ref, 'release/') }}
196
run: |
197
# need to "git add" in case any generated files did not already exist
198
git add docs/apidiffs
0 commit comments