Skip to content

Commit

Permalink
Add two early access events about integration events. Fixes ssaunier#11
Browse files Browse the repository at this point in the history
  • Loading branch information
ssaunier committed Apr 1, 2017
1 parent 20c891e commit 904fd82
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
github_webhook (1.0.3)
github_webhook (1.0.4)
activesupport (>= 4)
rack (>= 1.3)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ to a [GitHub webhook](https://developer.github.com/webhooks/)
Add this line to your application's Gemfile:

```ruby
gem 'github_webhook', '~> 1.0.3'
gem 'github_webhook', '~> 1.0.4'
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion lib/github_webhook/processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class UnsupportedContentTypeError < StandardError; end
# }
# });
# console.log(events);
GITHUB_EVENTS_WHITELIST = %w(ping commit_comment create delete deployment deployment_status download follow fork fork_apply gist gollum issue_comment issues label member membership milestone organization org_block page_build project_card project_column project public pull_request pull_request_review pull_request_review_comment push release repository status team team_add watch)
GITHUB_EVENTS_WHITELIST = %w(ping commit_comment create delete deployment deployment_status download follow fork fork_apply gist gollum issue_comment issues label member membership milestone organization org_block page_build project_card project_column project public pull_request pull_request_review pull_request_review_comment push release repository status team team_add watch integration_installation integration_installation_repositories)

def create
if self.respond_to? event_method
Expand Down
2 changes: 1 addition & 1 deletion lib/github_webhook/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module GithubWebhook
VERSION = "1.0.3"
VERSION = "1.0.4"
end

0 comments on commit 904fd82

Please sign in to comment.