Skip to content

Commit 57b9dd4

Browse files
no message
1 parent 5ded437 commit 57b9dd4

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/auto-request-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Skip for repository owner
1717
id: check
1818
run: |
19-
if [ "${{ github.event.pull_request.user.id }}" == '4849482' ]; then
19+
if [ "${{ github.event.pull_request.user.id }}" = '4849482' ]; then
2020
echo "run=false" >> $GITHUB_OUTPUT
2121
echo "::notice::Skipping auto-review request - repository owner PR"
2222
else

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Skip for release-please
1717
id: check
1818
run: |
19-
if [ "${{ github.event.pull_request.user.id }}" == '41898282' ]; then
19+
if [ "${{ github.event.pull_request.user.id }}" = '41898282' ]; then
2020
echo "run=false" >> $GITHUB_OUTPUT
2121
echo "::notice::Skipping CI checks - release-please PR"
2222
else
@@ -73,23 +73,23 @@ jobs:
7373
7474
- name: Install Doctrine Lexer dependency
7575
run: |
76-
if [ "${{ matrix.doctrine-lexer }}" == "1.2" ]; then
76+
if [ "${{ matrix.doctrine-lexer }}" = "1.2" ]; then
7777
composer require doctrine/lexer "~1.2" --dev --prefer-dist --no-interaction --no-progress
78-
elif [ "${{ matrix.doctrine-lexer }}" == "2.1" ]; then
78+
elif [ "${{ matrix.doctrine-lexer }}" = "2.1" ]; then
7979
composer require doctrine/lexer "~2.1" --dev --prefer-dist --no-interaction --no-progress
80-
elif [ "${{ matrix.doctrine-lexer }}" == "3.0" ]; then
80+
elif [ "${{ matrix.doctrine-lexer }}" = "3.0" ]; then
8181
composer require doctrine/lexer "~3.0" --dev --prefer-dist --no-interaction --no-progress
8282
else
8383
composer update --prefer-dist --no-interaction --no-progress
8484
fi
8585
8686
- name: Install Doctrine ORM dependency
8787
run: |
88-
if [ "${{ matrix.doctrine-orm }}" == "2.14" ]; then
88+
if [ "${{ matrix.doctrine-orm }}" = "2.14" ]; then
8989
composer require doctrine/orm "~2.14" --prefer-dist --no-interaction --no-progress --with-all-dependencies
90-
elif [ "${{ matrix.doctrine-orm }}" == "2.18" ]; then
90+
elif [ "${{ matrix.doctrine-orm }}" = "2.18" ]; then
9191
composer require doctrine/orm "~2.18" --prefer-dist --no-interaction --no-progress --with-all-dependencies
92-
elif [ "${{ matrix.doctrine-orm }}" == "3.0" ]; then
92+
elif [ "${{ matrix.doctrine-orm }}" = "3.0" ]; then
9393
composer require doctrine/orm "~3.0" --prefer-dist --no-interaction --no-progress --with-all-dependencies
9494
else
9595
composer update --prefer-dist --no-interaction --no-progress

.github/workflows/sloth.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Skip for release-please
1818
id: check
1919
run: |
20-
if [ "${{ github.event.pull_request.user.id }}" == '41898282' ]; then
20+
if [ "${{ github.event.pull_request.user.id }}" = '41898282' ]; then
2121
echo "run=false" >> $GITHUB_OUTPUT
2222
echo "::notice::Skipping Sloth - release-please PR"
2323
else

0 commit comments

Comments
 (0)