From 984aa9b8338b67da059848dcb7c7735f534c5e7c Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Wed, 4 Dec 2024 18:35:15 +0000 Subject: [PATCH] removed slippery semi colon --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 542a52d..c7fd44c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -135,12 +135,12 @@ jobs: { name: 'Check for modified files', conclusion: '${{ steps.git-check.outcome }}' }, { name: 'Update changes in GitHub repository', conclusion: '${{ steps.update-changes-in-github-repository.outcome }}' } ].filter(step => step.conclusion === 'failure'); - const failedStepsDetails = failedSteps.map(step => `- ${step.name}: ${step.conclusion}`).join('\n'); + const failedStepsDetails = failedSteps.map(step => `- ${step.name}`).join('\n'); const commentBody = failedSteps.length > 0 ? ` ## Code Quality Checks Failed The following checks failed: ${failedStepsDetails} - `; : ` + ` : ` ## Code Quality Checks Failed No checks failed. `;