Skip to content

Commit

Permalink
removed slippery semi colon
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 4, 2024
1 parent aa3dceb commit 984aa9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
`;
Expand Down

0 comments on commit 984aa9b

Please sign in to comment.