Skip to content

Commit

Permalink
switch output
Browse files Browse the repository at this point in the history
  • Loading branch information
maxi418 committed Dec 19, 2024
1 parent 339380b commit 2ec0034
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
id: determine_deployment_clearance
run: |
if [ -z "$env.PR_NUMBER" ] || [[ ${{ ! contains(env.PR_LABELS, 'prevent_auto_deployment') }} == true ]]; then
echo "deployment_clearance=true" >> "$GITHUB_OUTPUT"
echo "Deployment clearance: true"
echo "deployment_clearance=true" >> "$GITHUB_OUTPUT"
else
echo "deployment_clearance=false" >> "$GITHUB_OUTPUT"
echo "Deployment clearance: false"
echo "deployment_clearance=false" >> "$GITHUB_OUTPUT"
fi
scan_helm:
Expand Down

0 comments on commit 2ec0034

Please sign in to comment.