We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2507d8e commit 4aa1426Copy full SHA for 4aa1426
.github/workflows/run_tests_coverage.yml
@@ -104,6 +104,12 @@ jobs:
104
105
# Specify whether to download Git-LFS files:
106
lfs: false
107
+
108
+ # Checkout PR branch if triggered by a pull request:
109
+ ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || '' }}
110
111
+ # Checkout PR repository (to properly work with forks) if triggered by a pull request:
112
+ repository: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name || github.repository }}
113
timeout-minutes: 10
114
115
# Install Node.js:
0 commit comments