From de1f5b29d6f7c570baa2d23f6dbde94a7252a7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 25 Jul 2022 22:16:49 +0200 Subject: [PATCH] Run static analysis action on all branches and pull requests. --- .github/workflows/static_analysis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index 8ec3db2e..c80b3ccc 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -2,9 +2,13 @@ name: Static analysis on: push: - branches: [ master ] + branches: + - '*' + - "!i10n_*" # Dont test localization branches pull_request: - branches: [ master ] + branches: + - '*' + - "!i10n_*" jobs: phpstan: