Description
This gem will help you to quickly setup a route in your Rails application which listens to a GitHub webhook
Github Webhook alternatives and similar gems
Based on the "Git Tools" category.
Alternatively, view Github Webhook alternatives based on common mentions on social networks and blogs.
-
Overcommit
A fully configurable and extendable Git hook manager -
git_reflow
Reflow automatically creates pull requests, ensures the code review is approved, and squash merges finished branches to master with a great commit message template. -
git_remote_branch
A tool to simplify working with remote branches -
Git Cop
DEPRECATED: Use Git Lint (https://www.alchemists.io/projects/git-lint) instead. -
git-auto-bisect
Find the first broken commit without having to learn git bisect -
git-whence
Find the merge and pull request a commit came from + fuzzy search for cherry-picks
Static code analysis for 29 languages.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Github Webhook or a related project?
README
Github Webhook for Rails
This gem will help you to quickly setup a route in your Rails application which listens to a GitHub webhook
Alternatives
If you want to use this logic outside of Rails, you should consider the following gems (cf #19):
If you are on Rails, please read on!
Installation
Add this line to your application's Gemfile:
gem 'github_webhook', '~> 1.4'
And then execute:
$ bundle install
Configuration
First, configure a route to receive the github webhook POST requests.
# config/routes.rb
resource :github_webhooks, only: :create, defaults: { formats: :json }
Then create a new controller:
# app/controllers/github_webhooks_controller.rb
class GithubWebhooksController < ActionController::Base
include GithubWebhook::Processor
# Handle push event
def github_push(payload)
# TODO: handle push webhook
end
# Handle create event
def github_create(payload)
# TODO: handle create webhook
end
private
def webhook_secret(payload)
ENV['GITHUB_WEBHOOK_SECRET']
end
end
Add as many instance methods as events you want to handle in your controller.
All events are prefixed with github_
. So, a push
event can be handled by github_push(payload)
, or a create
event can be handled by github_create(payload)
, etc.
You can read the full list of events GitHub can notify you about.
Adding the Webhook to your git repository:
First, install octokit, then run a rails console.
$ gem install octokit
$ rails console
In the rails console, add the WebHook to GitHub:
require "octokit"
client = Octokit::Client.new(:login => 'ssaunier', :password => 's3cr3t!!!')
repo = "ssaunier/github_webhook"
callback_url = "yourdomain.com/github_webhooks"
webhook_secret = "a_gr34t_s3cr3t" # Must be set after that in ENV['GITHUB_WEBHOOK_SECRET']
# Create the WebHook
client.subscribe "https://github.com/#{repo}/events/push.json", callback_url, webhook_secret
The secret is set at the webhook creation. Store it in an environment variable,
GITHUB_WEBHOOK_SECRET
as per the example. It is important to have such a secret,
as it will guarantee that your process legit webhooks requests, thus only from GitHub.
You can have an overview of your webhooks at the following URL:
https://github.com/:username/:repo/settings/hooks
Contributing
Specs
This project uses Appraisal to test against multiple versions of Rails.
On Travis, builds are also run on multiple versions of Ruby, each with multiple versions of Rails.
When you run bundle install
, it will use the latest version of Rails.
You can then run bundle exec rake spec
to run the test with that version of Rails.
To run the specs against each version of Rails, use bundle exec appraisal rake spec
.