From 67aa6dd7e4fbb462d67eaebb9108e74a83ca4aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 13 Feb 2023 00:34:13 +0100 Subject: [PATCH] Do not run actions on localization branches This often fails and causes a lot of email traffic... --- .github/workflows/docker_build.yml | 2 +- .github/workflows/static_analysis.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index c78c3e4c..4f9b3d44 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -6,7 +6,7 @@ on: push: branches: - '**' - - '!I10n_**' + - '!l10n_**' tags: - 'v*.*.*' - 'v*.*.*-**' diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index f6585b5d..78df6a1d 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -4,11 +4,11 @@ on: push: branches: - '*' - - "!i10n_*" # Dont test localization branches + - "!l10n_*" # Dont test localization branches pull_request: branches: - '*' - - "!i10n_*" + - "!l10n_*" jobs: phpstan: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fdad8b0a..ed2f0131 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,11 +4,11 @@ on: push: branches: - '*' - - "!i10n_*" # Dont test localization branches + - "!l10n_*" # Dont test localization branches pull_request: branches: - '*' - - "!i10n_*" + - "!l10n_*" jobs: phpunit: