We have often been asked about how GitHub Issues content could be aggregated in Flowdock. This wasn’t really possible until a few weeks ago as GitHub added event hooks to pretty much everything.
Issues, pull requests, wiki updates, and comments are now pushed to Flowdock in addition to commits. We have been using them ourselves, and it has significantly reduced the time it takes to react to a pull request.

The configuration can be a bit of work until GitHub gets its revamped hooks admin out. If you have an existing Flowdock hook in your GitHub repo, you have to poke the GitHub API a bit.
Configuring new hooks don’t require anything special. Just follow the instructions from our help page and you’re done.
Tags: Flowdock, github, issue tracking, project management, pull request, team inbox — Disqus
Hubot, Github‘s awesome chat bot was open-sourced a couple weeks ago. That’s when we jumped in and made it talk with Flowdock. Hubot has some pretty cool abilities. To get your very own Flowdock Hubot:
- Create a Hubot user for your Flowdock company.
- Follow these deployment instructions.

Among the built-in abilities are:
- show a map for an address (“hubot map me …”)
- show an image based on keywords (“hubot image me …”)
- show a youtube video based on keywords (“hubot youtube me …”)
- fetch an image of a person from the web and add mustache to aforementioned picture of said person as demonstrated above, great for Movember (“hubot mustache me …”)

See the rest by saying “hubot help”. There’s tons more you can add yourself in the hubot-scripts repository.
These features also make use of our new link preview feature (currently works with images, YouTube, Google Maps and tweets).
Make Hubot Useful
Hubot can do much more than incite a laugh or two. For example, one of our users, Christopher Castle, has implemented a JIRA issue fetcher, which allows Hubot to list and search JIRA issues assigned to you.
Similar functionality for Pivotal Tracker has been implemented as well, get it here.
Tags: bot, Flowdock, github, hubot, jira, mustache — Disqus
Flowdock functions as the center of your work conversation, so it makes sense to receive notifications of your work to Flowdock. If you are a software development team, it’s a no-brainer to want notifications from your version control to pop into your Flowdock flow. Flowdock is now fully integrated with Git and GitHub.
To receive notifications from your GitHub repository to your Flowdock flow, follow these simple steps:
- Login to Flowdock, and go to your flow.
- Go to Influx and click the
button.
- Copy the API token for your flow to clipboard.
- Login to GitHub, go to your repository’s page.
- Click Admin from the repository’s top menu, and then Service Hooks from the admin’s side menu.
- Click Flowdock from the list entitled Available Service Hooks.
- Paste the API token from clipboard to the field labeled Token and check the Active checkbox. Then click Update Settings.
To test the integration, click Flowdock again from the hooks list on GitHub and click the now showing Test Hook button. Now you’re all set and receiving notifications from GitHub!

If you need several flows to be notified about commits in one repository, go to the Post-Receive URLs section of the Available Service Hooks list and add one entry for each flow in the following form:
https://api.flowdock.com/v1/git/YOURAPITOKENHERE_
Other Git Repositories
We also support privately hosted Git repositories, but you’ll have to grab our post-receive hook.
curl -o hooks/post-receive https://github.com/nodeta/post-receive-http/raw/master/post-receive
chmod +x hooks/post-receive
git config httphook.url https://api.flowdock.com/v1/git
git config httphook.token _YOUR_API_TOKEN_HERE_
That’s it, you’re all set with your git repos!
Check out more stuff about integrating your tools with Flowdock at our support section for agile software developers.
Tags: Flowdock, git, github, integration — Disqus