We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 127316b commit b35925dCopy full SHA for b35925d
.github/workflows/nightly-cleanup.yml
@@ -65,12 +65,12 @@ jobs:
65
run: |
66
. venv/bin/activate
67
echo "Found clusters: ${{ env.ci_clusters }}"
68
- if [[ -z "${{ env.ci_clusters }}" ]]; then
+ if [[ -z ${ci_clusters} ]]; then
69
echo "No clusters to delete."
70
exit 0
71
fi
72
73
- for cluster_prefix in ${{ env.ci_clusters }}
+ for cluster_prefix in ${ci_clusters}
74
do
75
TAGS=$(openstack server show ${cluster_prefix}-control --column tags --format value)
76
if [[ $TAGS =~ "keep" ]]; then
0 commit comments