diff options
author | 2021-04-16 07:38:42 -0700 | |
---|---|---|
committer | 2021-04-16 07:38:42 -0700 | |
commit | cedf6ffddc62aaca46bea3fcb0e81acedf7f62eb (patch) | |
tree | 7aadac05230f3c04e0032ad42429dcf8a1982ec4 | |
parent | 52440be79e83ed8024dd43e9ed93a783b662afc9 (diff) | |
download | coredns-cedf6ffddc62aaca46bea3fcb0e81acedf7f62eb.tar.gz coredns-cedf6ffddc62aaca46bea3fcb0e81acedf7f62eb.tar.zst coredns-cedf6ffddc62aaca46bea3fcb0e81acedf7f62eb.zip |
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 <yong.tang.github@outlook.com>
-rw-r--r-- | .github/workflows/go.coverage.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |