Skip to content

Instantly share code, notes, and snippets.

@pevd950
Created November 9, 2023 17:17
Show Gist options
  • Select an option

  • Save pevd950/e43d78c305aa10bd5867a2d988bd92d7 to your computer and use it in GitHub Desktop.

Select an option

Save pevd950/e43d78c305aa10bd5867a2d988bd92d7 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
require "json"
require "active_support/all"
codespaces = JSON.parse!(`gh cs list --json name,lastUsedAt`)
codespaces.each do |codespace|
if codespace["lastUsedAt"].to_date < 7.days.ago
puts "Deleting #{codespace["name"]}..."
`gh cs delete --force -c #{codespace["name"]}`
end
end
puts "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment