-
-
Save KyMidd/6a3d818a5d2c728d91fe14c1e9718cf1 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
| # Get all the copilot user data | |
| copilot_all_user_data=$(curl -s \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H "Authorization: Bearer $GITHUB_TOKEN" \ | |
| -H "X-GitHub-Api-Version: 2022-11-28" \ | |
| https://api.github.com/orgs/$gh_org/copilot/billing/seats?per_page=100 2>&1) | |
| # Get all users that are added to CoPilot | |
| copilot_all_users=$(echo "$copilot_all_user_data" | jq -r '.seats[].assignee.login') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment