Skip to content

Commit e00f3db

Browse files
authored
Merge pull request #118 from aligent/hotfix/PHP-Workflow-Condition-Fix
HOTFIX: Fix formatting of multiline if statement
2 parents 88da0cc + 0eca40a commit e00f3db

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/php-quality-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -504,8 +504,8 @@ jobs:
504504
echo "🎨 Running PHP CodeSniffer (${INPUTS_CODING_STANDARD} standard)..."
505505
506506
# Check for custom check-style script first (unless use-custom-config is set)
507-
if [ "${{ inputs.use-custom-config }}" == "false" ]
508-
&& composer run-script --list | grep -q "check-style"; then
507+
if [ "${{ inputs.use-custom-config }}" == "false" ] && \
508+
composer run-script --list | grep -q "check-style"; then
509509
echo "✅ Using composer check-style script"
510510
composer run-script check-style
511511
elif [ "${NEEDS_INSTALL_OUTPUTS_HAS_PHPCS_CONFIG}" = "true" ]; then

0 commit comments

Comments
 (0)