Skip to content

Commit

Permalink
Fix wrong if in the workflow (#1027)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolodziejczak authored Sep 25, 2024
1 parent 7280f48 commit 7d9547c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: Build manager image
needs: [check-build-image]
environment: ${{ github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' && 'restricted' || 'internal' }}
if: ${{ github.event.pull_request.draft == false && needs.filter-changes.outputs.check == 'true' }}
if: ${{ needs.check-build-image.outputs.check == 'true' }}
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: istio-manager
Expand Down

0 comments on commit 7d9547c

Please sign in to comment.