Temporarily always run CI and Operator workflows until conditions are fixed (#16719)

This commit is contained in:
Stian Thorgersen 2023-01-31 08:57:32 +01:00 committed by GitHub
parent c6aba2e3de
commit b2d94b22e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,11 @@ cat .github/actions/conditional/conditions | grep '=' | grep -v '#' | while read
CHANGED=true CHANGED=true
fi fi
# Temporarily always run ci and operator as there's some issues with conditions
if [ "$KEY" == "ci" ] || [ "$KEY" == "operator" ]; then
CHANGED=true
fi
echo "$KEY=$CHANGED" echo "$KEY=$CHANGED"
if [ "$GITHUB_OUTPUT" != "" ]; then if [ "$GITHUB_OUTPUT" != "" ]; then