Bug Fix: Complete Automation Support
What's Fixed
The -y flag now properly skips ALL prompts, not just token confirmation.
Before v2.1.1:
$ followers 9 -y
✓ Using existing token (auto-confirmed)
Dry run first? (y/n): # Still prompted! ❌After v2.1.1:
$ followers 9 -y
✓ Using existing token (auto-confirmed)
✓ Auto-executing (no dry-run) # No prompt! ✅Changes
- Option 3 (bulk unfollow):
-yskips dry-run prompt - Option 5 (bulk follow):
-yskips dry-run prompt - Option 9 (auto-sync):
-yskips dry-run prompt - Help text updated: "Auto-accept all prompts"
- README clarified behavior
Now Fully Supports
Cron Jobs:
# Daily auto-sync at 2 AM
0 2 * * * followers 9 -y >> ~/followers-log.txt 2>&1Automation Scripts:
followers 9 -y # Completely unattendedCI/CD Pipelines:
- run: followers 3 -y # No interaction neededUpgrading from v2.1.0
cd github-unfollower
git pull
# Your existing scripts with -y will now work as expectedThis completes the automation features started in v2.1.0.