Skip to content

v2.1.1 - Fully Non-Interactive Mode

Latest

Choose a tag to compare

@lancedesk lancedesk released this 04 Feb 09:44
· 5 commits to main since this release

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): -y skips dry-run prompt
  • Option 5 (bulk follow): -y skips dry-run prompt
  • Option 9 (auto-sync): -y skips 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>&1

Automation Scripts:

followers 9 -y  # Completely unattended

CI/CD Pipelines:

- run: followers 3 -y  # No interaction needed

Upgrading from v2.1.0

cd github-unfollower
git pull
# Your existing scripts with -y will now work as expected

This completes the automation features started in v2.1.0.