From 9f9035a98ee1f8074acf4c62b96fcd890a32b6d9 Mon Sep 17 00:00:00 2001 From: holysoles Date: Fri, 11 Apr 2025 16:35:15 -0500 Subject: [PATCH] fix(docs): fix indentation with github actions setup --- .../GitHubActions/WorkflowYMLStep.tsx | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx b/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx index c2c1dd6905..a2d2f55b70 100644 --- a/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx +++ b/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx @@ -33,15 +33,17 @@ function WorkflowYMLStep({ owner, }) - const workflowYMLConfig = `- name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v5 - with: - token: \${{ secrets.CODECOV_TOKEN }}${ - orgUploadToken - ? ` - slug: ${owner}/${repo}` - : '' - }` + // prettier-ignore + const actionString = + `- name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4.0.1 + with: + token: \${{ secrets.CODECOV_TOKEN }}${ + orgUploadToken + ? ` + slug: ${owner}/${repo}` + : '' + }` return (