📌 Automate GitHub follows while respecting rate limits
devansh-m12/github-follow
├── 📁 src/ # Source code
├── 📄 script.js # Main executable
├── 📄 .env.example # Configuration template
└── 📄 LICENSE # MIT License
-
Get Token
Create PAT withuser:follow
scope -
Configure
git clone https://github.com/devansh-m12/github-follow.git cd github-follow echo "GH_TOKEN=your_token" > .env npm install
-
Run
node script.js # Follow prompts for repo/page
Variable | Default | Purpose |
---|---|---|
GH_TOKEN |
- | GitHub PAT (Required) |
DEBUG |
false |
Verbose logging |
# .github/workflows/auto-follow.yml
name: Auto-Follow
on:
schedule:
- cron: '0 12 * * 1' # Mondays 12PM UTC
This tool may violate GitHub's ToS if misused. Monitor your follow limits.