Skip to content

Commit a9dcba7

Browse files
authored
Merge pull request #132 from paulbalandan/invalid-symbol
chore: fix invalid symbol '"'
2 parents 3fd6873 + 60aa9bb commit a9dcba7

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

Diff for: .github/workflows/phpcsfixer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
name: Coding Standards
2020
runs-on: ubuntu-latest
21-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
21+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2222

2323
steps:
2424
- name: Checkout

Diff for: .github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
name: PHP ${{ matrix.php-versions }} Static Analysis
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626
strategy:
2727
fail-fast: false
2828
matrix:

Diff for: .github/workflows/psalm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
name: Psalm Analysis
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626

2727
steps:
2828
- name: Checkout

Diff for: .github/workflows/rector.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
name: PHP ${{ matrix.php-versions }} Rector Analysis
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626
strategy:
2727
fail-fast: false
2828
matrix:

Diff for: src/Template/.github/workflows/deptrac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
name: Dependency Tracing
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626

2727
steps:
2828
- name: Checkout

Diff for: src/Template/.github/workflows/infection.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
main:
1515
name: Mutation Testing
1616
runs-on: ubuntu-latest
17-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
17+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
1818

1919
steps:
2020
- name: Checkout

Diff for: src/Template/.github/workflows/phpcpd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
name: Code Copy-Paste Detection
2020
runs-on: ubuntu-latest
21-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
21+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2222

2323
steps:
2424
- name: Checkout

Diff for: src/Template/.github/workflows/phpcsfixer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
name: Coding Standards
2020
runs-on: ubuntu-latest
21-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
21+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2222

2323
steps:
2424
- name: Checkout

Diff for: src/Template/.github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
name: PHP ${{ matrix.php-versions }} Static Analysis
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626
strategy:
2727
fail-fast: false
2828
matrix:

Diff for: src/Template/.github/workflows/phpunit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
main:
2323
name: PHP ${{ matrix.php-versions }} Unit Tests
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626
strategy:
2727
matrix:
2828
php-versions: ['7.4', '8.0', '8.1', '8.2']

Diff for: src/Template/.github/workflows/psalm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
name: Psalm Analysis
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626

2727
steps:
2828
- name: Checkout

Diff for: src/Template/.github/workflows/rector.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323
name: PHP ${{ matrix.php-versions }} Rector Analysis
2424
runs-on: ubuntu-latest
25-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
25+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626
strategy:
2727
fail-fast: false
2828
matrix:

Diff for: src/Template/.github/workflows/unused.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
build:
2121
name: Unused Package Detection
2222
runs-on: ubuntu-latest
23-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
23+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2424

2525
steps:
2626
- name: Checkout

0 commit comments

Comments
 (0)