From c9f1962f685c9d3f0e625a55bff53b2ce0873d98 Mon Sep 17 00:00:00 2001 From: filzrev <103790468+filzrev@users.noreply.github.com> Date: Sat, 14 Dec 2024 23:11:32 +0900 Subject: [PATCH] chore: add codecov token parameter --- .github/codecov.yml | 11 +++++++++++ .github/workflows/ci.yml | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .github/codecov.yml diff --git a/.github/codecov.yml b/.github/codecov.yml new file mode 100644 index 00000000000..6dc80b46343 --- /dev/null +++ b/.github/codecov.yml @@ -0,0 +1,11 @@ +coverage: + status: + project: + default: + informational: true + patch: + default: + informational: true +comment: false +github_checks: + annotations: false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93b3e6d0d29..cd1decd5a7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,8 @@ jobs: - uses: codecov/codecov-action@v5 if: matrix.os == 'ubuntu-latest' with: - fail_ci_if_error: true + fail_ci_if_error: false + token: ${{ secrets.CODECOV_TOKEN }} - run: echo "DOTNET_DbgEnableMiniDump=1" >> $GITHUB_ENV if: matrix.os == 'ubuntu-latest'