Skip to content

Commit

Permalink
test output
Browse files Browse the repository at this point in the history
  • Loading branch information
maxi418 committed Nov 29, 2024
1 parent 14b1258 commit c5e8ffe
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ jobs:
echo "set merge clearance to true"
fi
fi
- name: test output
if: ${{ env.PR_NUMBER != '' }}
run: |
echo "test output: " ${{ steps.determine_merge_clearance.outputs.merge_clearance }}
test_merge_prevention:
needs:
Expand All @@ -80,8 +85,10 @@ jobs:
security-events: write

build_image_on_push:
needs:
- check-merge-clearance
name: "Publish image and scan with trivy"
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && needs.check-merge-clearance.outputs.merge_clearance }}
permissions:
packages: write
security-events: write
Expand Down

0 comments on commit c5e8ffe

Please sign in to comment.