You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Clean up GH actions multinode instances over 12 hours old
80
+
run: |
81
+
result=0
82
+
changes_before=$(date -Imin -d -12hours)
83
+
for status in ACTIVE BUILD ERROR SHUTOFF; do
84
+
for instance in $(openstack server list --tags gh-actions-multinode --os-compute-api-version 2.66 --format value --column ID --changes-before $changes_before --status $status); do
85
+
echo "Cleaning up $status instance $instance"
86
+
openstack server show $instance
87
+
if ! openstack server delete $instance; then
88
+
echo "Failed to delete $status instance $instance"
0 commit comments