--- stage: Govern group: Compliance info: "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments" type: reference, concepts disqus_identifier: 'https://docs.gitlab.com/ee/user/project/merge_requests/status_checks.html' --- # External status checks **(ULTIMATE)** > - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3869) in GitLab 14.0, disabled behind the `:ff_external_status_checks` feature flag. > - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/320783) in GitLab 14.1. > - `failed` status [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/329636) in GitLab 14.9. You can create a status check that sends merge request data to third-party tools. When users create, change, or close merge requests, GitLab sends a notification. The users or automated workflows can then update the status of merge requests from outside of GitLab. With this integration, you can integrate with third-party workflow tools, like ServiceNow, or the custom tool of your choice. The third-party tool respond with an associated status. This status is then displayed as a non-blocking widget within the merge request to surface this status to the merge request author or reviewers at the merge request level itself. The lack of a status check response does not block the merging of a merge request. You can configure merge request status checks for each individual project. These are not shared between projects. To learn more about use cases, feature discovery, and development timelines, see the [external status checks epic](https://gitlab.com/groups/gitlab-org/-/epics/3869). ## Block merges of merge requests unless all status checks have passed > [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/369859) in GitLab 15.5 [with a flag](../../../administration/feature_flags.md) named `only_allow_merge_if_all_status_checks_passed`. Disabled by default. FLAG: On self-managed GitLab, by default this feature is not available. To make it available per project or for your entire instance, ask an administrator to [enable the feature flag](../../../administration/feature_flags.md) named `only_allow_merge_if_all_status_checks_passed`. On GitLab.com, this feature is not available. By default, merge requests in projects can be merged even if external status checks fail. To block the merging of merge requests when external checks fail, enable this feature using the [project API](../../../api/projects.md#edit-project). You must also [enable the feature flag](../../../administration/feature_flags.md) named `only_allow_merge_if_all_status_checks_passed`. ## Lifecycle External status checks have an **asynchronous** workflow. Merge requests emit a merge request webhook payload to an external service whenever: - The merge request is changed. For example, title or description. - Code is pushed to the source branch of the merge request. - A comment is made in the merge request discussion. ```mermaid sequenceDiagram Merge request->>+External service: Merge request payload External service-->>-Merge request: Status check response Note over External service,Merge request: Response includes SHA at HEAD ``` When the payload is received, the external service can then run any required processes before posting its response back to the merge request [using the REST API](../../../api/status_checks.md#set-status-of-an-external-status-check). Merge requests return a `409 Conflict` error to any responses that do not refer to the current `HEAD` of the source branch. As a result, it's safe for the external service to process and respond to out-of-date commits. External status checks have the following states: - `pending` - The default state. No response can been received by the merge request from the external service. - `passed` - A response from the external service has been received and approved by it. - `failed` - A response from the external service has been received and denied by it. If something changes outside of GitLab, you can [set the status of an external status check](../../../api/status_checks.md#set-status-of-an-external-status-check) using the API. You don't need to wait for a merge request webhook payload to be sent first. ## View the status checks on a project Within each project's settings, you can see a list of status checks added to the project: 1. In your project, go to **Settings > Merge requests** section. 1. Scroll down to **Status checks**. ![Status checks list](img/status_checks_list_view_v14_0.png) This list shows the service name, API URL, and targeted branch. It also provides actions to allow you to create, edit, or remove status checks. ## Add or update a status check ### Add a status check Within the **Status checks** sub-section, select the **Add status check** button. The **Add status check** form is then shown. ![Status checks create form](img/status_checks_create_form_v14_0.png) Filling in the form and selecting the **Add status check** button creates a new status check. ### Update a status check Within the **Status checks** sub-section, select the **Edit** button next to the status check you want to edit. The **Update status check** form is then shown. ![Status checks update form](img/status_checks_update_form_v14_0.png) Changing the values in the form and selecting the **Update status check** button updates the status check. ### Form values For common form errors see the [troubleshooting](#troubleshooting) section below. #### Service name This name can be any alphanumerical value and **must** be set. The name **must** be unique for the project. The name **has** to be unique for the project. #### API to check This field requires a URL and **must** use either the HTTP or HTTPs protocols. We **recommend** using HTTPs to protect your merge request data in transit. The URL **must** be set and **must** be unique for the project. #### Target branch If you want to restrict the status check to a single branch, you can use this field to set this limit. ![Status checks branch selector](img/status_checks_branches_selector_v14_0.png) The branches list is populated from the projects [protected branches](../protected_branches.md). You can scroll through the list of branches or use the search box when there are a lot of branches and the branch you are looking for doesn't appear immediately. The search box requires **three** alphanumeric characters to be entered for the search to begin. If you want the status check to be applied to **all** merge requests, you can select the **All branches** option. ## Delete a status check Within the **Status checks** sub-section, select the **Remove...** button next to the status check you want to delete. The **Remove status check?** modal is then shown. ![Status checks delete modal](img/status_checks_delete_modal_v14_0.png) To complete the deletion of the status check you must select the **Remove status check** button. This **permanently** deletes the status check and it **will not** be recoverable. ## Status checks widget > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/327634) in GitLab 14.1. > - UI [updated](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/91504) in GitLab 15.2. The status checks widget displays in merge requests and displays the following statuses: - **pending** (**{status-neutral}**), while GitLab waits for a response from an external status check. - **success** (**{status-success}**) or **failed** (**{status-failed}**), when GitLab receives a response from an external status check. An organization might have a policy that does not allow merging merge requests if external status checks do not pass. However, the details in the widget are for informational purposes only. GitLab does not prevent merging of merge requests that fail status checks. Support to allow merges to be blocked when external status checks fail is proposed in epic [&8516](https://gitlab.com/groups/gitlab-org/-/epics/8516). NOTE: GitLab cannot guarantee that the external status checks are properly processed by the related external service. ## Troubleshooting ### Duplicate value errors ```plaintext Name is already taken --- External API is already in use by another status check ``` On a per project basis, status checks can only use a name or API URL once. These errors mean that either the status checks name or API URL have already been used in this projects status checks. You must either choose a different value on the current status check or update the value on the existing status check. ### Invalid URL error ```plaintext Please provide a valid URL ``` The API to check field requires the URL provided to use either the HTTP or HTTPs protocols. You must update the value of the field to meet this requirement. ### Branch list error during retrieval or search ```plaintext Unable to fetch branches list, please close the form and try again ``` An unexpected response was received from the branches retrieval API. As suggested, you should close the form and reopen again or refresh the page. This error should be temporary, although if it persists, check the [GitLab status page](https://status.gitlab.com/) to see if there is a wider outage. ### Failed to load status checks ```plaintext Failed to load status checks ``` An unexpected response was received from the external status checks API. You should: - Refresh the page in case this error is temporary. - Check the [GitLab status page](https://status.gitlab.com/) if the problem persists, to see if there is a wider outage. ## Related topics - [External status checks API](../../../api/status_checks.md)