No commit activity in last 3 years
No release in over 3 years
fluentd input plugin for receive GitHub webhook
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.6
>= 0

Runtime

 Project Readme

Fluent::Plugin::Webhook::Github

fluentd input plugin for incoming webhook from GitHub.

(Work in progress. I don't recommend to use this in production)

Installation

$ gem install fluent-plugin-webhook-github

Usage

<source>
  type webhook_github
  tag gh

  secret THE_SECRET_STRING_YOU_SET # the hook's secret. optional, but strongly recommended.

  # optional (values are default)
  bind 0.0.0.0
  port 8080
  mount /
  with_payload false
</source>

<match gh.*>
  type stdout
</match>

<match gh.pull_request>
  type hipchat
</match>

Contributing

  1. Fork it ( https://github.com/uu59/fluent-plugin-webhook-github/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request