You can set up webhooks so that Bitrise automatically triggers a build of your app whenever you perform a specified action, such as a code push or a pull request. For Assembla, you only need to add your bitrise-webhooks
URL to your Assembla space.
Get the webhook URL for Assembla ⚓
- Go to the Code tab of your app’s page and in the INCOMING WEBHOOKS menu, click SETUP MANUALLY.
-
Select Assembla from the dropdown menu.
- Copy the webhook URL for the selected service.
Set up webhook on Assembla ⚓
- Open your space on assembla.com or your organisation’s assembla domain.
- Go to the Webhooks section of the space.
- Select Create New Webhook.
- Set Title to BitRise Webhook.
- Specify the
bitrise-webhooks
URL. (.../h/assembla/BITRISE-APP-SLUG/BITRISE-APP-API-TOKEN
) in the External url field. - Select
application/json
in the Content type field. -
Paste the following code to Content:
{"assembla": {"space": "%{space}", "action": "%{action}", "object": "%{object}"}, "message": {"title": "%{title}", "body": "%{body}", "author": "%{author}"}, "git": {"repository_suffix": "%{repository_suffix}", "repository_url": "%{repository_url}", "branch": "%{branch}", "commit_id": "%{commit_id}"}}
- Select Code commits and/or Git Push in the Post updates about: section.
- Click Add.
That’s all! The next time you push code a build will be triggered (if you have Trigger mapping defined for the event(s) on Bitrise).