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: - "*"