From 5b141a977e5c90b48919da042ab00131bec19d75 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 27 Mar 2025 13:38:43 +0100 Subject: [PATCH] squash! ci : re-enable bindings-java (java) job Add a condition to the bindings-java job to only run when the event is a push, pull_request, or the run_type is full-ci. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2379f649..24c4f98b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -996,6 +996,8 @@ jobs: # ./gradlew assembleRelease bindings-java: + if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || + github.event.inputs.run_type == 'full-ci' }} needs: ['windows'] runs-on: windows-latest steps: