From 39962e45c5cd9d5bab9cb547e798cf42a97ccae6 Mon Sep 17 00:00:00 2001 From: Bruno Barbieri Date: Fri, 30 Aug 2024 17:57:01 -0400 Subject: [PATCH] dont run while in draft --- .github/workflows/macstadium-builds.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macstadium-builds.yml b/.github/workflows/macstadium-builds.yml index 2ef49aeacba..442ddd41784 100644 --- a/.github/workflows/macstadium-builds.yml +++ b/.github/workflows/macstadium-builds.yml @@ -1,10 +1,14 @@ name: iOS builds -on: [pull_request, workflow_dispatch] +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + workflow_dispatch: jobs: # Job to install dependencies build: runs-on: ["self-hosted"] + if: github.event.pull_request.draft == false concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true