This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit c0692a650f08dff40a1b2854453035f092c2f461 Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Mon Aug 24 21:17:34 2020 +0200 Skip native tests if the pull request has 'JVM' label --- .github/workflows/ci-build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 4bf0533..1e2f170 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -164,6 +164,7 @@ jobs: name: Native Tests - ${{matrix.category}} needs: build runs-on: ubuntu-latest + if: github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'JVM') strategy: fail-fast: false matrix: ${{ fromJson(needs.build.outputs.matrix) }}