Commits
Click on a commit to change the comparison rangeadd --all flag to prefect automation delete command
this change adds a --all flag to the `prefect automation delete` command,
following the pattern established by `prefect deployment delete --all`.
- adds --all option to delete all automations at once
- includes interactive confirmation prompt when in interactive mode
- validates that --all is not used with name or id arguments
- handles edge case where no automations exist
- adds comprehensive test coverage for all scenarios
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>11 hours ago
by zzstoatzz use concurrent deletions with semaphore for --all
switch from sequential deletions to concurrent deletions using
asyncio.gather with a semaphore (limit 10), following the pattern
from deployment schedule pause/resume --all commands11 hours ago
by zzstoatzz import asyncio at top level, use asyncio.gather consistently10 hours ago
by zzstoatzz