Skip to content

Commit

Permalink
Acceptance test: fix display result 7
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkad committed Dec 6, 2024
1 parent b49054b commit a622dda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/power-acceptance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# Check if the actor is in the allowed list
if [[ ! " ${allowed_users_array[@]} " =~ " ${actor} " ]]; then
echo "User ${actor} is not authorized to run this workflow."
exit 0 # This will stop the workflow if the user is not authorized
exit 1 # This will stop the workflow if the user is not authorized
fi
echo "User ${actor} is authorized to run the workflow."
Expand Down

0 comments on commit a622dda

Please sign in to comment.