From 67a032031f5e8e6de0a0a3a03d82917e5ee1059f Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 8 Mar 2026 12:46:56 +0000 Subject: [PATCH] Fix invalid codecov.yml configuration Remove invalid top-level `email` and `slack` keys that caused validation errors. Move `notify.after_n_builds` under the `codecov:` section where it belongs per the current schema. https://claude.ai/code/session_01CF28unbmyUrbP6ueWSTHiw --- codecov.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/codecov.yml b/codecov.yml index d3d5378..b307bf8 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,5 +1,10 @@ comment: false +codecov: + notify: + after_n_builds: 1 + wait_for_ci: false + coverage: status: project: @@ -9,15 +14,5 @@ coverage: default: target: auto -notify: - after_n_builds: 1 - wait_for_ci: false - github_checks: annotations: false - -slack: - default: false - -email: - default: false