Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you see who is watching a repo on GitHub?

It looks like there is an API call to view the users that watch a repo from [GithubDeveloper]:(https://developer.github.com/v3/activity/watching/#list-watchers)

List watchers
GET /repos/:owner/:repo/subscribers

Is there any way to see this list on the site? Am I interpreting the API correctly? Is watching equal to subscribing?

like image 306
Doug Avatar asked Nov 07 '14 14:11

Doug


2 Answers

When on a repo's page, you'll see links on the right side in the "About" column that give you this information:

Repo Watchers

Or go to this URL directly:

https://github.com/{user}/{project}/watchers
like image 110
Haney Avatar answered Nov 09 '22 01:11

Haney


This has recently changed. Now watchers are accessible from an "About" section in the right column.

enter image description here

like image 32
simleo Avatar answered Nov 08 '22 23:11

simleo