Are there service hooks for GitHub wiki repositories? Is there some other mechanism that GitHub provides for me to track wiki edits?
Are there service hooks for GitHub wiki repositories? Is there some other mechanism that
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Push approach: Within the GitHub API documentation, you can find documentation about setting up service hooks which can be triggered for one or more events. The
gollumevent is especially raised any time a wiki page is updated.JSON-based pull approach: You can also leverage the Events HTTP API to retrieve a JSON formated output of what happens on GitHub, then apply some filtering in order to isolate the events of type
GollumEvent.Below a quick jQuery-based sample
Atom based pull approach: Last but not least, you can subscribe to the wiki changes atom feed. Go to the GitHub Wiki section of the repository, select the
Pagessub tab, hover onto the orange icon, copy the link and paste into your favorite RSS reader.Update:
It looks like the RSS feed icon is no longer displayed for a wiki.
However, you can still build the URL by yourself
https://github.com/:user/:repository/wiki.atom