From 658f7d80a05ddbc12eecb8daffc4931fb02dda15 Mon Sep 17 00:00:00 2001 From: David Robinson <14000840+khelwood@users.noreply.github.com> Date: Thu, 12 Mar 2026 09:35:39 +0000 Subject: [PATCH] add condition to github test action --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d6e8daa8..812fce1b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,6 +9,9 @@ on: pull_request: branches: [devel] +# Allow skipping tests triggered by a push +if: github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip tests]') + jobs: cypress: name: Run cypress tests