-
-
Save KyMidd/77f7368cfbc7ab2fab9a70bdcf805096 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Iterate through all users, check their last active date | |
| while IFS=$'\n' read -r copilot_user; do | |
| # Print divider | |
| echo "****************************************" | |
| # Check rate limit blockers, hold if token bucket too low | |
| hold_until_rate_limit_success | |
| # Print the user we're looking at | |
| echo "🔍 Looking into $copilot_user" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment