Skip to content

Commit e71216e

Browse files
committed
refactor: fix warnings on VSCode
See codeigniter4/CodeIgniter4#9058
1 parent 567aab8 commit e71216e

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

.github/workflows/deptrac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
name: Dependency Tracing
3232
runs-on: ubuntu-latest
33-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
33+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3434

3535
steps:
3636
- name: Checkout

.github/workflows/infection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
main:
2323
name: Mutation Testing
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

.github/workflows/phpcpd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
build:
3636
name: Code Copy-Paste Detection
3737
runs-on: ubuntu-latest
38-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
38+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3939

4040
steps:
4141
- name: Checkout

.github/workflows/phpcsfixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
build:
2727
name: PHP ${{ matrix.php-versions }} Coding Standards
2828
runs-on: ubuntu-latest
29-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
29+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3030
strategy:
3131
fail-fast: false
3232
matrix:

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
name: PHP ${{ matrix.php-versions }} Static Analysis
3232
runs-on: ubuntu-latest
33-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
33+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3434
strategy:
3535
fail-fast: false
3636
matrix:

.github/workflows/phpunit-lowest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
main:
3232
name: PHP ${{ matrix.php-versions }} - ${{ matrix.db-platforms }} - ${{ matrix.dependencies }}
3333
runs-on: ubuntu-latest
34-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
34+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3535
strategy:
3636
matrix:
3737
php-versions: ['7.4']

.github/workflows/phpunit-no-db.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
main:
3232
name: PHP ${{ matrix.php-versions }} Unit Tests
3333
runs-on: ubuntu-latest
34-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
34+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3535
strategy:
3636
matrix:
3737
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
main:
3838
name: PHP ${{ matrix.php-versions }} - ${{ matrix.db-platforms }}
3939
runs-on: ubuntu-latest
40-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
40+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
4141
strategy:
4242
matrix:
4343
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
name: Psalm Analysis
3232
runs-on: ubuntu-latest
33-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
33+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3434

3535
steps:
3636
- name: Checkout

.github/workflows/rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
name: PHP ${{ matrix.php-versions }} Rector Analysis
3232
runs-on: ubuntu-latest
33-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
33+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
3434
strategy:
3535
fail-fast: false
3636
matrix:

0 commit comments

Comments
 (0)