From 11e14204909d6caefb3902fd2580f96eb65cf1e8 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Tue, 29 Aug 2023 12:50:25 -0400 Subject: [PATCH] project: codecov comments only for changes. This commit adds a `codecov.yml` configuration file that instructs Codecov.io to only add a comment to pull requests when coverage changes. See the codecov docs[0] for more information. If this is still too noisy for our preferences we can adjust the config to `comment: false` in a follow-up. [0]: https://docs.codecov.com/docs/pull-request-comments --- codecov.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..ba6f0b2b --- /dev/null +++ b/codecov.yml @@ -0,0 +1,2 @@ +comment: + require_changes: true