Skip to content

Commit

Permalink
Fix environment check
Browse files Browse the repository at this point in the history
  • Loading branch information
barchw committed Dec 11, 2024
1 parent 582d89f commit 08003c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
build-image:
name: Build and push manager image
environment: ${{ github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' && 'restricted' || 'internal' }}
environment: ${{ github.event.pull_request.author_association != 'MEMBER' && github.event.pull_request.author_association != 'OWNER' && 'restricted' || 'internal' }}
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.draft == false }}
steps:
Expand Down

0 comments on commit 08003c4

Please sign in to comment.