Temporarily always run CI and Operator workflows until conditions are fixed (#16719)
This commit is contained in:
parent
c6aba2e3de
commit
b2d94b22e7
1 changed files with 5 additions and 0 deletions
5
.github/actions/conditional/conditional.sh
vendored
5
.github/actions/conditional/conditional.sh
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue