From 1d685304c3383d891fdf9816bd5940880ba2a4ce Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 6 May 2026 21:59:03 +0100 Subject: [PATCH] ci: skip Testbox workflow checks for draft PRs --- .github/workflows/ci-build-artifacts-testbox.yml | 1 + .github/workflows/ci-check-testbox.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci-build-artifacts-testbox.yml b/.github/workflows/ci-build-artifacts-testbox.yml index 71562b20668..3fdd0eca0b9 100644 --- a/.github/workflows/ci-build-artifacts-testbox.yml +++ b/.github/workflows/ci-build-artifacts-testbox.yml @@ -19,6 +19,7 @@ env: jobs: build-artifacts: + if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }} permissions: contents: read name: "build-artifacts" diff --git a/.github/workflows/ci-check-testbox.yml b/.github/workflows/ci-check-testbox.yml index 52cdd74a52b..b722a860306 100644 --- a/.github/workflows/ci-check-testbox.yml +++ b/.github/workflows/ci-check-testbox.yml @@ -18,6 +18,7 @@ env: jobs: check: + if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }} permissions: contents: read name: "check"