Set custom GitHub organization locations, like this one:
Since GitHub tries to make you choose from countries now, just use the API to get around it.
curl -X PATCH -H "Accept: application/vnd.github.v3+json" -H "Authorization: token $GITHUB_TOKEN" \
https://api.github.com/orgs/$ORGANIZATION -d '{"location":"localhost:420"}'
where:
$GITHUB_TOKEN
= PAT withorg:admin
scope - create one at https://github.com/settings/tokens$ORGANIZATION
= your organization's username (https://github.com/flourd/ -> username isflourd
)localhost:420
= any string that you want to set as the organization location :)