Do not run actions on localization branches

This often fails and causes a lot of email traffic...
This commit is contained in:
Jan Böhmer 2023-02-13 00:34:13 +01:00
parent c4757fcba7
commit 67aa6dd7e4
3 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ on:
push:
branches:
- '**'
- '!I10n_**'
- '!l10n_**'
tags:
- 'v*.*.*'
- 'v*.*.*-**'

View file

@ -4,11 +4,11 @@ on:
push:
branches:
- '*'
- "!i10n_*" # Dont test localization branches
- "!l10n_*" # Dont test localization branches
pull_request:
branches:
- '*'
- "!i10n_*"
- "!l10n_*"
jobs:
phpstan:

View file

@ -4,11 +4,11 @@ on:
push:
branches:
- '*'
- "!i10n_*" # Dont test localization branches
- "!l10n_*" # Dont test localization branches
pull_request:
branches:
- '*'
- "!i10n_*"
- "!l10n_*"
jobs:
phpunit: