From a8ee68e949fd4f9425de08f2e137b2ca59396f37 Mon Sep 17 00:00:00 2001 From: Christian Winther Date: Sun, 11 Feb 2024 13:41:49 +0000 Subject: [PATCH] Run tests in all branches --- .github/workflows/db.yml | 5 +++-- .github/workflows/php.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/db.yml b/.github/workflows/db.yml index 45a825ac3..1d0a6c119 100644 --- a/.github/workflows/db.yml +++ b/.github/workflows/db.yml @@ -8,8 +8,9 @@ on: # See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push push: branches: - - dev - - staging + - '*' # matches every branch that doesn't contain a '/' + - '*/*' # matches every branch containing a single '/' + - '**' # matches every branch tags: - "*" diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index d0cc3dd2c..3fc0c559e 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -8,8 +8,9 @@ on: # See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push push: branches: - - dev - - staging + - '*' # matches every branch that doesn't contain a '/' + - '*/*' # matches every branch containing a single '/' + - '**' # matches every branch tags: - "*"