diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2021-07-19 09:08:49 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2021-07-19 09:13:32 +0100 |
| commit | b408d467cb9010117f33692274e4dcf0e5277874 (patch) | |
| tree | e210ab77ec827efc7645f5f783afb1b9483bb2f9 /.github | |
| parent | efd8e999b80d264dd6e546160a7d0ed07f5f3648 (diff) | |
| download | webtrees-b408d467cb9010117f33692274e4dcf0e5277874.tar.gz webtrees-b408d467cb9010117f33692274e4dcf0e5277874.tar.bz2 webtrees-b408d467cb9010117f33692274e4dcf0e5277874.zip | |
Exclude translation updates from github actions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/phpcs.yaml | 1 | ||||
| -rw-r--r-- | .github/workflows/phpstan.yaml | 1 | ||||
| -rw-r--r-- | .github/workflows/phpunit.yaml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/phpcs.yaml b/.github/workflows/phpcs.yaml index abbd818c66..bb238b12cc 100644 --- a/.github/workflows/phpcs.yaml +++ b/.github/workflows/phpcs.yaml @@ -4,6 +4,7 @@ on: [push, pull_request] jobs: run: + if: ${{ !startsWith(github.event.head_commit.message, 'Translation: ') }} runs-on: ubuntu-latest name: PHP/PHTML/CSS diff --git a/.github/workflows/phpstan.yaml b/.github/workflows/phpstan.yaml index deb9d79065..919bf9706c 100644 --- a/.github/workflows/phpstan.yaml +++ b/.github/workflows/phpstan.yaml @@ -4,6 +4,7 @@ on: [push, pull_request] jobs: run: + if: ${{ !startsWith(github.event.head_commit.message, 'Translation: ') }} runs-on: ubuntu-latest name: phpstan diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index 1d529b4cb9..c5f38ea5cc 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -4,6 +4,7 @@ on: [push, pull_request] jobs: run: + if: ${{ !startsWith(github.event.head_commit.message, 'Translation: ') }} runs-on: ${{ matrix.operating-system }} strategy: |
