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 d7f0626 commit e998bb0Copy full SHA for e998bb0
.github/workflows/nightly-build.yml
@@ -21,7 +21,7 @@ jobs:
21
# this dimension is only needed to check whether we're in CnCNet repo
22
# and exclude hardened build because we may have no access to it
23
has-private-access:
24
- - ${{ github.event.pull_request.head.repo.owner.login == 'CnCNet' }}
+ - ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'CnCNet' || github.event_name == 'push' && github.repository_owner == 'CnCNet' }}
25
exclude:
26
- is-hardened: -Hardened
27
has-private-access: false
0 commit comments