summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-07-20 17:21:43 +0100
committerGreg Roach <greg@subaqua.co.uk>2021-07-20 17:21:43 +0100
commit17437e5e473267cf0763ff6dee5d73623c7f78e2 (patch)
tree85173bda0c920ee1646eed0fe771879266b49d89 /.github
parent1b530e676d7c515358c4788508b0ca701454e17f (diff)
downloadwebtrees-17437e5e473267cf0763ff6dee5d73623c7f78e2.tar.gz
webtrees-17437e5e473267cf0763ff6dee5d73623c7f78e2.tar.bz2
webtrees-17437e5e473267cf0763ff6dee5d73623c7f78e2.zip
Fix: colon-space invalid in YAML
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpcs.yaml2
-rw-r--r--.github/workflows/phpstan.yaml2
-rw-r--r--.github/workflows/phpunit.yaml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/phpcs.yaml b/.github/workflows/phpcs.yaml
index bb238b12cc..274b27a843 100644
--- a/.github/workflows/phpcs.yaml
+++ b/.github/workflows/phpcs.yaml
@@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
run:
- if: ${{ !startsWith(github.event.head_commit.message, 'Translation: ') }}
+ 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 919bf9706c..b327ceeccd 100644
--- a/.github/workflows/phpstan.yaml
+++ b/.github/workflows/phpstan.yaml
@@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
run:
- if: ${{ !startsWith(github.event.head_commit.message, 'Translation: ') }}
+ 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 c5f38ea5cc..1019f8f6a2 100644
--- a/.github/workflows/phpunit.yaml
+++ b/.github/workflows/phpunit.yaml
@@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
run:
- if: ${{ !startsWith(github.event.head_commit.message, 'Translation: ') }}
+ if: ${{ !startsWith(github.event.head_commit.message, 'Translation:') }}
runs-on: ${{ matrix.operating-system }}
strategy: