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 78ded79 commit 45e211eCopy full SHA for 45e211e
.github/workflows/nightly-cleanup.yml
@@ -16,7 +16,7 @@ on:
16
jobs:
17
ci_cleanup:
18
name: ci-cleanup
19
- concurrency: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.cloud }}-${{ matrix.build }}
+ concurrency: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.cloud }}
20
strategy:
21
fail-fast: false
22
matrix:
@@ -62,7 +62,7 @@ jobs:
62
for cluster_prefix in ${CI_CLUSTERS}
63
do
64
TAGS=$(openstack server show ${cluster_prefix}-control --column tags --format value)
65
- if [[ TAGS =~ "keep" ]]; then
+ if [[ $TAGS =~ "keep" ]]; then
66
echo "Skipping ${cluster_prefix} - control instance is tagged as keep"
67
else
68
yes | ./dev/delete-cluster.py ${cluster_prefix}
0 commit comments