Github get the contributor list of a repository
Quick tip to retrieve the contributor list of a given repository. Example bellow with ceph-ansible:
$ curl -s https://api.github.com/repos/ceph/ceph-ansible/stats/contributors | grep login | awk -F ":" '{print $2}' | sed 's/"/,@/;s/,$//;s/"$//' | tr -d '\n' |
Now you can easily ping them.