This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 4cbfac783c minor refactor: avoid slow tests for trivial changes
4cbfac783c is described below

commit 4cbfac783c11b52cf5922dc30516ea52166d045b
Author: Paul King <[email protected]>
AuthorDate: Tue Apr 7 08:38:20 2026 +1000

    minor refactor: avoid slow tests for trivial changes
---
 .github/workflows/groovy-build-performance.yml | 1 +
 .github/workflows/groovy-jmh-classic.yml       | 1 +
 .github/workflows/groovy-jmh.yml               | 1 +
 3 files changed, 3 insertions(+)

diff --git a/.github/workflows/groovy-build-performance.yml 
b/.github/workflows/groovy-build-performance.yml
index b816e05263..d76e0bb8e4 100644
--- a/.github/workflows/groovy-build-performance.yml
+++ b/.github/workflows/groovy-build-performance.yml
@@ -22,6 +22,7 @@ permissions:
 
 jobs:
   test:
+    if: contains(github.event.head_commit.message, 'GROOVY-')
     strategy:
       fail-fast: false
     runs-on: ubuntu-latest
diff --git a/.github/workflows/groovy-jmh-classic.yml 
b/.github/workflows/groovy-jmh-classic.yml
index 761b3d2a27..78e867fe44 100644
--- a/.github/workflows/groovy-jmh-classic.yml
+++ b/.github/workflows/groovy-jmh-classic.yml
@@ -22,6 +22,7 @@ permissions:
 
 jobs:
   test:
+    if: contains(github.event.head_commit.message, 'GROOVY-')
     strategy:
       fail-fast: false
       matrix:
diff --git a/.github/workflows/groovy-jmh.yml b/.github/workflows/groovy-jmh.yml
index 098d7958fe..da7f178337 100644
--- a/.github/workflows/groovy-jmh.yml
+++ b/.github/workflows/groovy-jmh.yml
@@ -22,6 +22,7 @@ permissions:
 
 jobs:
   test:
+    if: contains(github.event.head_commit.message, 'GROOVY-')
     strategy:
       fail-fast: false
       matrix:

Reply via email to