For the complete documentation index, see llms.txt. This page is also available as Markdown.

Configure Sources of Change

Configure your CI/CD tools to send build and deployment webhooks to the Deploy Change Investigator

Configure your CI/CD tools to send build and deployment data to the Deploy Change Investigator for incident correlation.

Overview

The Deploy Change Investigator requires two types of webhooks from your CI/CD pipeline:

  1. Build webhooks: Send artifact versions and commit information when builds complete.

  2. Deploy webhooks: Track when services are deployed to which environments.

This section provides configuration guides for popular CI/CD tools and change tracking systems.

The tools on this page act as ingest change sources: they send build, deploy, and change data into AI SRE. Some also support automation elsewhere in AI SRE. Harness Pipelines, Jira, ServiceNow, and GitHub can also be acted on by runbooks. Go to Set Up Integration Management to review the full capability matrix.


Before you begin

Complete the Deploy Change Investigator setup:

  • Create build webhook integration in AI SRE. Go to Deploy Change Investigator to set up the webhook endpoints.

  • Copy the build and deploy webhook URLs from your integrations.

  • Connect a source-control change source for pull request ingestion. If your code is in Harness Code, ingestion is automatic with no connector required. Otherwise, go to Configure GitHub or Configure Bitbucket to set up polling-based pull request ingestion.


Available integration guides

CI/CD tools

Configure any of these CI/CD tools to send build and deploy webhooks:

  • Harness Pipelines: Native integration with Harness build and deployment pipelines.

  • Jenkins: Configure Jenkins pipelines to send build and deploy webhooks.

  • GitHub Actions: Add webhook steps to GitHub Actions workflows.

  • GitLab CI: Configure GitLab CI/CD pipelines with webhook notifications.

  • CircleCI: Send build and deploy data from CircleCI workflows.

Source control

Source-control change sources ingest merged pull requests by polling, not webhooks. There is no webhook URL to paste into your repository. AI SRE uses your Harness connector to query the provider's API, approximately once per hour, for pull requests merged into your deploy branch.

  • GitHub: Ingest merged pull requests from GitHub.com, GitHub Enterprise Cloud, or GitHub Enterprise Server.

  • Bitbucket: Ingest merged pull requests from Bitbucket Cloud.

  • Harness Code: Ingest merged pull requests automatically, with no connector required.

Change tracking systems

Send change and deployment data from these tracking systems:

  • Jira: Track Jira issue deployments and releases.

  • Terraform: Send Terraform apply events as deployment data.

  • ServiceNow: Ingest ServiceNow change records automatically once a ServiceNow connector exists.


Webhook payload requirements

Build webhook payload

Deploy webhook payload

The deploy payload also accepts these optional fields:

  • metadata: Arbitrary JSON object for additional context.

  • deployment_url: Link to the deployment.

  • ticket_url: Link to a related ticket.

  • tags: Labels for the deployment.

  • summary: Short description of the deployment.

  • change_type: Classifier for the change.

Critical requirement: The service name and version in deploy webhooks must match the corresponding fields from build webhooks.


Authentication and delivery

Build and deploy webhooks use the following delivery model:

  • No HMAC signature is required. The secret is the opaque webhook URL itself. Treat the URL as a credential.

  • Rate limiting is per organization. When you exceed the limit, the endpoint returns HTTP 429. The limit is tier-configurable, so do not hardcode a value.

  • There is no server-side retry of failed inbound webhooks. Retrying a failed send is the responsibility of your CI/CD tool.

NO PRIVILEGED HARNESS CHANNEL

"Harness Deployment" and "Harness Build" are webhook-template presets. They use the same generic webhook mechanism as Jenkins, GitHub Actions, and CircleCI. There is no privileged native path for Harness CD or CI.


Test webhooks

After configuration, verify webhooks are being received:

  1. In the AI SRE left navigation, go to Integrations.

  2. Click the More icon (...) on your BUILD or DEPLOY integration.

  3. Select Debug.

  4. Trigger a build or deployment.

  5. Verify the webhook appears with correct payload data.


Next steps

Last updated

Was this helpful?