From 0c5b9c9461478d565c29316df13120103a80a9b0 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Wed, 8 Feb 2023 15:38:48 +0100 Subject: [PATCH 1/2] Revert "Don't run quickstart compilation job on PRs that don't target main" This reverts commit d994438ca8a33fca2760c472b977f0b36bbb2c90. --- .github/workflows/ci-actions-incremental.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci-actions-incremental.yml b/.github/workflows/ci-actions-incremental.yml index 70d4e40331b25..dcc427bfb4acc 100644 --- a/.github/workflows/ci-actions-incremental.yml +++ b/.github/workflows/ci-actions-incremental.yml @@ -552,8 +552,7 @@ jobs: runs-on: ${{matrix.java.os-name}} needs: build-jdk11 # Skip main in forks - if: "(github.repository == 'quarkusio/quarkus' && (github.event_name != 'pull_request' || github.base_ref == 'main')) \ - || (github.repository != 'quarkusio/quarkus' && !endsWith(github.ref, '/main'))" + if: (github.repository == 'quarkusio/quarkus' && (github.event_name != 'pull_request' || github.base_ref == 'main')) || !endsWith(github.ref, '/main') timeout-minutes: 90 strategy: fail-fast: false From 3a98ac9d5cc3a3915ac07785b3b87f779a11e406 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Wed, 8 Feb 2023 15:38:57 +0100 Subject: [PATCH 2/2] Revert "Only run the quickstart compilation for main" This reverts commit e2934d517fda6d3d3638f93f36d87577feb09378. --- .github/workflows/ci-actions-incremental.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-actions-incremental.yml b/.github/workflows/ci-actions-incremental.yml index dcc427bfb4acc..3bc9e0d5ab817 100644 --- a/.github/workflows/ci-actions-incremental.yml +++ b/.github/workflows/ci-actions-incremental.yml @@ -552,7 +552,7 @@ jobs: runs-on: ${{matrix.java.os-name}} needs: build-jdk11 # Skip main in forks - if: (github.repository == 'quarkusio/quarkus' && (github.event_name != 'pull_request' || github.base_ref == 'main')) || !endsWith(github.ref, '/main') + if: github.repository == 'quarkusio/quarkus' || !endsWith(github.ref, '/main') timeout-minutes: 90 strategy: fail-fast: false