File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -73,12 +73,15 @@ jobs:
73
73
with :
74
74
token : ${{ secrets.CODECOV_TOKEN }}
75
75
fail_ci_if_error : false
76
- file : lcov.info
76
+ files : lcov.info
77
77
78
78
# fetching builds from Buildkite
79
79
buildkite_test :
80
80
name : Julia ${{ matrix.version }} ${{ matrix.build }} ${{ matrix.llvm_args }}
81
81
runs-on : ${{ matrix.os }}
82
+ # This job requires accessing a secret, which isn't available in PRs from
83
+ # forks. Skip this job entirely if it's a pull request from a fork.
84
+ if : ${{ github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork }}
82
85
strategy :
83
86
fail-fast : false
84
87
matrix :
@@ -121,4 +124,4 @@ jobs:
121
124
with :
122
125
token : ${{ secrets.CODECOV_TOKEN }}
123
126
fail_ci_if_error : false
124
- file : lcov.info
127
+ files : lcov.info
You can’t perform that action at this time.
0 commit comments