This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch 1.0.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 1ecf797a2cb71ea1d2fdc66780c40bdc7573412e
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 d7f4273..a79b350 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -162,6 +162,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) }}

Reply via email to