Skip to content

Commit b35925d

Browse files
authored
Update nightly-cleanup.yml
1 parent 127316b commit b35925d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/nightly-cleanup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
run: |
6666
. venv/bin/activate
6767
echo "Found clusters: ${{ env.ci_clusters }}"
68-
if [[ -z "${{ env.ci_clusters }}" ]]; then
68+
if [[ -z ${ci_clusters} ]]; then
6969
echo "No clusters to delete."
7070
exit 0
7171
fi
7272
73-
for cluster_prefix in ${{ env.ci_clusters }}
73+
for cluster_prefix in ${ci_clusters}
7474
do
7575
TAGS=$(openstack server show ${cluster_prefix}-control --column tags --format value)
7676
if [[ $TAGS =~ "keep" ]]; then

0 commit comments

Comments
 (0)