summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2024-05-19 14:32:26 +1000
committerJesse Duffield <jessedduffield@gmail.com>2024-05-19 14:36:25 +1000
commite09b38153c6d41beccbc13a818d047c8d8d1ca0c (patch)
tree4f0910739bdd0b36606ea8ac6c4844e4767e06a8 /.github
parentcd62c719f1956147c3f08b17189a1e3181654da5 (diff)
Attempt #2 at preventing codacy coverage step from running on forks
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 23599bbaf..74033166a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -188,7 +188,7 @@ jobs:
upload-coverage:
# List all jobs that produce coverage files
needs: [unit-tests, integration-tests]
- if: github.event.repository.fork == false
+ if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- name: Checkout code