Skip to main content
All CollectionsIntegrations and HookupsCode Repository Integrations
Setting up GitHub, Bitbucket or other SCM/VCS Integration
Setting up GitHub, Bitbucket or other SCM/VCS Integration
Wade Williams avatar
Written by Wade Williams
Updated over a week ago

Introduction

Sprintly is able to monitor your GitHub or Beanstalk or Bitbucket (or any SCM/VCS) repository for code commits to repositories related to your products. This enables for deep ticket management integration that can be triggered by your coders via git, svn, or hg commit messages. In other words, a programmer can do git commit -m 'Changed error message color to red. Fixes #33.' and Sprintly will dutifully mark that item as complete when said programmer pushes that code to GitHub.

Currently, Sprintly supports a number of nifty commands and features via our SCM/VCS integration:

  • All commit messages that contain a recognized command will be attached to the tickets mentioned in the commit message as a type of comment. You can tell code commits from comments by the icon next to them. Code commits have a gear icon and comments have a speech bubble.

  • You can issue commands, such as closing or referencing a ticket, from commit messages.

  • All code commit messages will be formatted in Markdown.

  • Ticket numbers in commit messages are automatically linked to the ticket.

Before you get started

  • Make sure that all of the commiters to your SCM repositories on your preferred service are using the same email for both their SCM accounts and their Sprintly accounts. This includes the email used with the config --global user.email [email address] command when you setup your Git repository locally. When commits are sent to Sprintly from your preferred SCM service they include your email address, which we use to save those commits under your Sprintly user. Otherwise, you'll need to authenticate with Github via the user profile page and we'll pull down any alternate email addresses you have on file with them.

  • Do not add more than one Sprintly post-receive hook to a single SCM/VCS repository. This is because two products could both have a ticket #2 and Sprintly wouldn't know which ticket from which product to attach the commit message to. You can, however, add a single Sprintly post-receive hook to more than one GitHub repository without issues (e.g. Add the post-receive URL for "My Product" to the GitHub repositories for the Android and iOS applications).

Getting the post-receive URL (commit hook) from your product

First locate the commit hook for your product in the Services tab of your Sprintly settings. Select a product from the Product pull-down menu and select Commit Hook from the Services pull-down menu.

The post-receive URL will look something like https://sprint.ly/product/1234/commits/f1d2d2f924e986ac86fdf7b36c94bcdf32beec15. Copy the URL and then head over to your preferred SCM provider (Currently, we support GitHub, Beanstalk, and Bitbucket).

GitHub Integration

Go to the GitHub repository you want Sprint.ly to monitor for commits and pull requests. 

  1. Click "Settings"

  2. Click "Webhooks" on the left

  3. Click "Add webhook" on the top right.

  4. Paste the Sprintly URL into the empty Payload URL field.

  5. Under "Which events would you like to trigger this webhook?", select "Let me select individual events."

  6. Check "Pushes" and "Pull requests"

  7. Click "Add webhook"

Save your Sprintly Post-Receive URLs at Beanstalk

Go to one of the Beanstalk repositories you wish Sprintly to monitor for commit messages and follow the following steps:

  1. Click on the "Setup" tab at the top.

  2. Click on the "Integration" tab below the "Repository Setup" header.

  3. Choose "Webhooks" from the list of services on the left.

  4. Click the "Activate..." button.

  5. Paste the Sprintly URL into the empty URL field.

  6. Click "Next Step".

  7. Click "Activate".

That's it! Sprintly is now monitoring your commits from Beanstalk and ready to do your bidding.

NOTE: It doesn't appear as though Beanstalk supports multiple webhooks to be attached to a single repository. We do not know of or have a workaround if you would like to add Sprintly when you already have a webhook activated.

Save your Sprintly Post-Receive URLs at Bitbucket

Go to one of the Bitbucket repositories you wish Sprintly to monitor for commit messages and follow the following steps:

  1. Click the "Admin" tab for the repository.

  2. Click the "Services" tab in the "Repository details" list.

  3. Choose "POST" from the service list and click "Add service" button.

  4. Past the Sprintly URL into the empty text input labeled "URL".

  5. Click the "Save settings" button.

That's it! Sprintly is now monitoring your commits from Bitbucket and ready to do your bidding.

Did this answer your question?