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 4eb5a39 commit 1a6d312Copy full SHA for 1a6d312
.github/workflows/build.yml
@@ -35,7 +35,7 @@ env:
35
PLANCACHEENABLED: "false"
36
CI_IS_EXPRESS: ${{ github.ref_type == 'tag' && contains(github.ref_name, 'express') && 'true' || 'false' }}
37
STACKQL_IMAGE_NAME: ${{ vars.STACKQL_IMAGE_NAME != '' && vars.STACKQL_IMAGE_NAME || (github.repository == 'stackql/stackql' || github.repository == 'stackql/stackql-devel') && github.repository || 'stackql/stackql' }}
38
- IS_FORK_PR: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'false' || 'true' }}
+ IS_FORK_PR: ${{ ((github.event_name == 'pull_request') && (github.event.pull_request.head.repo.full_name != github.repository)) && 'true' || 'false' }}
39
40
jobs:
41
0 commit comments