gogamoga
gogamoga

Reputation: 1

How to get notified immediately about pushed commit on GitHub?

Is there a way to get a notification immediately by e-mail or Telegram when an author pushes a commit? I'm aware of RSS but it takes some time before refreshing.

Upvotes: 0

Views: 89

Answers (1)

Alister Bulman
Alister Bulman

Reputation: 35139

Most things that happens to an account, or repo on Github can be configured to send a Webhook to a designated URL. There are also a number of services that will catch those notifications and perform some action. I have several setup myself for various repos, such as starting to run tests or code-quality (Travis and StyleCI) or just a notification via Slack.

There are also other services that can perform some user-specified action, such as sending you an email - like IFTTT and zapier. It's also possible to write your own.

Upvotes: 1

Related Questions