Set up a Git bridge

This guide explains how to set up a Git file bridge and connect it to a repository. Once connected, you will learn how to set up a Webhook to make Matrix fetch updates from the repository automatically with compatible repository providers.

This example assumes you already have an existing repository to work with and have admin access to it.

Create the Git file bridge asset

You need to create a Git file bridge asset for Matrix to use as the repository integration connection. This asset needs to be created somewhere with a publicly accessible URL applied. Place this asset in the same area as your other design-based assets, such as a dedicated design Site asset.

  1. Create a new Git file bridge asset by choosing Filesystem  Git file bridge from the asset creation menu.

  2. Enter a name for the asset and select Save. For example, "Manuals Design Files.

  3. Acquire the locks and make the asset Live straight away.

  4. Check to see that public read permissions are applied to this asset on the Permissions screen.

You now have a Git file bridge asset created and ready to be connected to your repository.

Manuals design files Git file bridge asset

Configuring the Repository

Using HTTPS requires you to store username and password values in clear text in the Matrix database. Only use HTTPS for publicly available repositories. Try to use SSH as a best practice. Avoid using personal usernames and passwords when SSH is not possible.

Choose the correct procedure for your Git service provider.

Configure SSH with GitHub

Using SSH with deploy keys is the simplest method to configure SSH on GitHub. The catch is that GitHub only allows you to use a deploy key on one repository. Matrix currently only has one SSH key per install, making the deploy key method impractical in some situations.

You can add Deploy keys if your GitHub user account has sufficient access permissions to the repository. Get the SSH Public Key using the instructions above and then add it by following the instructions https://docs.github.com/en/developers/overview/managing-deploy-keys#deploy-keys.

If you can not use deploy keys, you can also set up a GitHub machine user and add the Matrix SSH Public Key to the users' keys. Read more about setting up machine users on https://docs.github.com/en/developers/overview/managing-deploy-keys#machine-users.

  1. Once either the deploy key or machine user is configured, go to your GitHub repository’s main page and locate the Clone URL section.

  2. Copy either the SSH or HTTPS version into your clipboard. The following examples describe how to use the recommended SSH approach.

SSH clone URL menu in GitHub web user interface

Configure SSH with GitLab

GitLab allows deploy keys to be configured by anyone with appropriate access to the repository. You access the settings from the $repo/settings/repository URL (substitute $repo with the top-level URL of your repository, for example, https://gitlab.com/group/repo).

gitlab deploy key add

If the key has already been added to GitLab, you will see a warning message.

This warning message does not mean you can not use the key. To work around the problem, you must instead find it in the list of existing IDs and use the Enable button:

An example deploy key shown in the GitLab Deploy Keys screen
You can also use the fingerprint on the Matrix System configuration  External tools configuration screen to search for the key in GitLab.

Configure SSH with Bitbucket

Bitbucket allows "Access keys" to be configured per repository by any user with suitable access to the repository.

  1. Navigate to $repo/admin/access-keys/ (where $repo is replaced with the top-level URL of your repository. For example, https://bitbucket.org/user/repo).

  2. Select Add key.

  3. In the Label field, type a descriptive name for the key.

  4. In the Key field, enter the Matrix SSH Public Key.

    Add SSH key screen with the label and key fields completed
  5. Select Add key.

Clone the repository to Matrix

Now that you have set up the SSH keys, you can configure the Git file bridge asset in Matrix to access your repository.

  1. Copy the repository URL.

  2. Load the Details screen of your Git file bridge asset and paste the URL into the Git URL field.

    If you are using an HTTPS URL that requires authentication, you will need to enter a username and password.
  3. Select Save .

  4. Click the Clone repo button on the Git URL field.

    Matrix clones the files from the repository over to your Matrix server. Once complete, the screen shows a new section called Current repository. Within this section are details about the cloned repository.

    Current repository section
  5. Leave the Branch setting as the master branch for this tutorial.

  6. Expand the Git file bridge asset in the asset tree, and look for the shadow assets of the files that have been cloned over to the Matrix server.

    Git file bridge shadow assets

You have configured the Git file bridge and cloned the files from the repository. The next step is to create a standard page asset and reference some of the asset’s cloned Git files.

Reference files from Git in your pages

In this step, you reference a CSS and JS file from the Git file bridge in a standard page asset’s contents.

  1. Create a standard page asset.

  2. On the Content screen’s default component, click Edit component properties  Advanced.

  3. Set the Presentation tag to Raw (no formatting).

  4. Set the Component type to Code and then select Save.

  5. Locate the files you want to link to within your Git file bridge asset so that you can see the full relative path and file names of the files.
    In the example, you reference the css/globals.css and js/globals.js files.

  6. Reference the files within a <link> and <script> tag in the standard page’s contents. Use the Git file bridge’s Asset ID, followed by the relative path to the files themselves as described in the following example.

    Referencing design assets in the asset tree within a standard page code component
  7. Preview the standard page on the frontend.

View the page source in your browser. Notice the files' references are written as absolute URLs to their location within the __data directory on the Matrix server.

In the example, this would translate to the following HTML code:

<link rel="stylesheet" href="https://matrix.squiz.net/__data/assets/git_bridge/0014/7061/css/global.css"> <!--global.css-->
<script src="https://matrix.squiz.net/__data/assets/git_bridge/0014/7061/js/global.js"></script> <!--global.js-->

You have now completed the basic set up steps for the Git file bridge asset and referenced some of its files within a standard page.

Creating a webhook

If you make a change to the files in the repository, you need to go to the Current repository section on the Details screen of the Git file bridge asset and click on the Update now button to see the changes reflected on the Matrix server.

Rather than doing this manually every time, you can configure a webhook to pull in changes automatically. Webhooks allow you to set up automatic updates to your Git file bridge whenever specific events occur on the remote Git repository.

Add a webhook secret key to the Git file bridge

Add a secret key to the Git file bridge, which Matrix uses to authorize any webhook requests made from the Git repository.

  1. Go to the Details screen of the Git file bridge and find the Secret key field.

  2. In the Secret key field, enter a random, custom key.

    You can use any random string you want but be careful not to use something like your personal password.
  3. Select Save.

Webhooks will only work if the Git file bridge is live and publicly accessible. Check this now before continuing.

Configuring the webhook on the repository service provider will be different depending on how the repository is hosted. The following final sections in this tutorial describe how to configure webhooks on GitHub and GitLab. Choose the procedure that matches your repository service provider.

Configure the webhook in GitHub

Now that you have configured your webhook secret key in Matrix, you can create the webhook in GitHub to call your Matrix Git file bridge every time an event occurs in the repository.

  1. Start by going to the Settings tab of the main GitHub repository navigation.

  2. Click on the Webhooks link in the left side navigation.

  3. Click on the Add webhook button to bring the interface up for adding a webhook.

  4. In the Payload URL field, enter the URL of the Git file bridge asset in Matrix, followed by a query string that instructs Matrix to perform a Git Pull.

    https://matrix.squiz.net/_designs/manuals-design-files?SQ_GIT_BRIDGE_ACTION=pull
    If you are using an HTTPS URL in the Payload URL field, GitHub will by default enable SSL verification, which is recommended for security purposes. If you are using an SSL certificate that can not be verified, such as a self-signed one, you might need to disable this for the webhook to work correctly.
  5. Set the Content type setting to application/json.

  6. In the Secret field, enter the secret key you set on the Git file bridge in Matrix.

  7. In the Events section, you can choose which particular events you want to trigger the webhook. Select Send me everything so the webhook triggers for any event.

  8. Leave the Active setting on (the default state of this setting).

  9. Select Add webhook.

Your webhook should now look something like this:

Completed webhook screen

GitHub will alert you that it has created the webhook and send a ping payload to test it out. You can also confirm that the test payload was successful by clicking on the webhook to edit it and scrolling down to the Recent Deliveries section. There should now be at least one delivery with a green tick indicating that it was successful.

Recent deliveries section with a successful delivery displayed in the interface

You can also click on this delivery to view more details, such as Request and Response data.

Check the last updated date of the Update repository field on the Details screen to see if it matches the delivery timestamp in GitHub. If the delivery timestamp matches, the webhook is configured correctly.

You have now successfully created a webhook in GitHub that triggers an update to the Git file bridge in your Matrix system every time an event occurs within the Git repository.

Configure the webhook in GitLab

Now that you have configured your webhook secret key in Matrix, you can create the webhook in GitHub to call your Matrix Git file bridge every time an event occurs in the repository.

  1. Start by going to the Settings tab of the main GitLab repository navigation.

  2. Click Webhooks.

  3. In the URL field, paste the URL of the Git file bridge asset in Matrix, followed by a query string that tells Matrix to perform a Git Pull.

    https://matrix.squiz.net/_designs/manuals-design-files?SQ_GIT_BRIDGE_ACTION=pull
  4. Test the webhook:

    1. Select Edit on the webhook.

    2. Click Test  Push events.

    3. If everything worked correctly, the test returns a 200 status.

You have now successfully created a webhook in GitLab that triggers an update to the Git file bridge in your Matrix system every time an event occurs within the Git repository.