Skip to content

Commit 0722cd8

Browse files
authored
chore: Fix setup action condition again (#6584)
1 parent a58c447 commit 0722cd8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
env:
5252
REGISTRY_URL: ${{ inputs.registry-url }}
5353
REGISTRY_TOKEN: ${{ inputs.registry-token }}
54-
IS_FORK: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner == 'sap' && 'true' || 'false' }}
54+
IS_FORK: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'sap' && 'false' || 'true' }}
5555
shell: bash
5656
run: |
5757
if [[ -n "$REGISTRY_URL" ]]; then

0 commit comments

Comments
 (0)