From e3e9d1fb32e12a0aaa502680d00208dc90e7a956 Mon Sep 17 00:00:00 2001 From: Ioannis Karasavvaidis Date: Thu, 16 Nov 2023 11:29:15 +0000 Subject: [PATCH] (#PE-37164) Stop using Docker in CI --- .github/workflows/ci.yml | 6 +++++- .github/workflows/nightly.yml | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5738adb..bbf8ab7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,13 +5,17 @@ on: branches: - "main" workflow_dispatch: - + jobs: Spec: + if: ${{ github.repository_owner == 'puppetlabs' }} uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main" secrets: "inherit" Acceptance: + if: ${{ github.repository_owner == 'puppetlabs' }} needs: Spec uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main" + with: + flags: "--provision-service" secrets: "inherit" diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1b06c471..316d45f9 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -7,10 +7,14 @@ on: jobs: Spec: + if: ${{ github.repository_owner == 'puppetlabs' }} uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main" secrets: "inherit" Acceptance: + if: ${{ github.repository_owner == 'puppetlabs' }} needs: Spec uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main" + with: + flags: "--provision-service" secrets: "inherit"