Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6969377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:34:23+00:00 2026-05-27T16:34:23+00:00

Are there service hooks for GitHub wiki repositories? Is there some other mechanism that

  • 0

Are there service hooks for GitHub wiki repositories? Is there some other mechanism that GitHub provides for me to track wiki edits?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T16:34:24+00:00Added an answer on May 27, 2026 at 4:34 pm

    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 gollum event 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

    <html>
        <head>
            <title>Gollum events</title>
            <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
            <script type="text/javascript">
                $(function() {
                    $.getJSON('https://api.github.com/repos/holman/spark/events?callback=?', function(data) {
    
                        var list = $('#gollum-events');
    
                        $.each(data.data, function(key, val) {
                            if (val.type == "GollumEvent") {
                                $.each(val.payload.pages, function(key2, val2) {
                                    list.append('<li id="' + key + '.' + key2 + '"><a href="' + val2.html_url + '">' + val2.page_name + '</a> [' + val.actor.login + ' @ ' + val.created_at + ']</li>');
                                });
                            }
                        });
                    });
                });
            </script>
        </head>
        <body>
            <ul id="gollum-events"/>
        </body>
    </html>
    

    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 Pages sub tab, hover onto the orange icon, copy the link and paste into your favorite RSS reader.

    Subscribe to changes

    Update:

    It looks like the RSS feed icon is no longer displayed for a wiki.

    However, you can still build the URL by yourself

    • Syntax: https://github.com/:user/:repository/wiki.atom
    • Example: https://github.com/holman/spark/wiki.atom
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a service or api that allows wikipedia data regarding a string be
Is there a web-service/API that will provide information on who the US State and
There are a few windows service projects in our codebase that follow this model,
There is a WCF service that I was using and now it is pointing
is there a scalable email service where you only pay for the emails that
Is there a set of events, a service, or any other API in the
Under iOS there are several built in hooks for launching service-specific apps based on
My service is a netTCP webservice and the site that hooks up to it
I have a service listening to github service hooks, to perform automatic deployment. Sometimes
Is there a similar Service Bus framework like nServiceBus? What i want is a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.