Skip to content

Commit 854c73f

Browse files
authored
Merge pull request #9058 from paulbalandan/invalid-symbol
chore: fix invalid symbol '"'
2 parents 6ea30bf + 8c94deb commit 854c73f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test-psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
build:
2525
name: Psalm Analysis
2626
runs-on: ubuntu-latest
27-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
27+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2828

2929
steps:
3030
- name: Checkout

admin/starter/.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
runs-on: ubuntu-latest
1717

18-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
18+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
1919

2020
steps:
2121
- name: Checkout

0 commit comments

Comments
 (0)