This is an automated email from the ASF dual-hosted git repository.
stevedlawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git
The following commit(s) were added to refs/heads/main by this push:
new f2080cd16 Make codecov patch coverage check informational-only on main
f2080cd16 is described below
commit f2080cd16232be22207f4bfcd001312bc01c5a2d
Author: Steve Lawrence <[email protected]>
AuthorDate: Tue Aug 25 13:56:19 2026 -0400
Make codecov patch coverage check informational-only on main
The strict patch coverage check now only runs in the context of pull
requests (only_pulls: true), so merges to main no longer trigger it.
A separate, branch-scoped check for main remains informational so
coverage is still reported on merge but never fails the build.
The target for the main block is also explicitly made auto to make it
clear it's the same checks as the default block.
DAFFODIL-3081
---
.codecov.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.codecov.yml b/.codecov.yml
index 61ed0cdcc..f90bed1bc 100644
--- a/.codecov.yml
+++ b/.codecov.yml
@@ -16,10 +16,12 @@
coverage:
status:
project: off
- patch:
+ patch:
default:
target: auto
+ only_pulls: true
main:
+ target: auto
branches:
- main
informational: true