From cedf6ffddc62aaca46bea3fcb0e81acedf7f62eb Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Fri, 16 Apr 2021 07:38:42 -0700 Subject: [PATCH] Disable CodeCov on commit push (#4572) As commit push holds write access of GITHUB_TOKEN, we may want to limit the scope of third-party test run. This PR disable CodeCov on commit push. Pull request is still ok. Signed-off-by: Yong Tang --- .github/workflows/go.coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.coverage.yml b/.github/workflows/go.coverage.yml index 66149d35f..455dc5995 100644 --- a/.github/workflows/go.coverage.yml +++ b/.github/workflows/go.coverage.yml @@ -1,5 +1,5 @@ name: Go Coverage -on: [push, pull_request] +on: [pull_request] jobs: test: name: Coverage