diff --git a/website/docs/docs/cloud/git/git-configuration-in-dbt-cloud.md b/website/docs/docs/cloud/git/git-configuration-in-dbt-cloud.md
index fb8c018623..1a99a3222e 100644
--- a/website/docs/docs/cloud/git/git-configuration-in-dbt-cloud.md
+++ b/website/docs/docs/cloud/git/git-configuration-in-dbt-cloud.md
@@ -34,4 +34,10 @@ pagination_prev: null
link="/docs/cloud/git/connect-azure-devops"
icon="dbt-bit"/>
+
+
\ No newline at end of file
diff --git a/website/docs/docs/deploy/continuous-integration.md b/website/docs/docs/deploy/continuous-integration.md
index c738e641a5..a808d98544 100644
--- a/website/docs/docs/deploy/continuous-integration.md
+++ b/website/docs/docs/deploy/continuous-integration.md
@@ -27,6 +27,27 @@ When the CI run completes, you can view the run status directly from within the
dbt Cloud deletes the temporary schema from your when you close or merge the pull request. If your project has schema customization using the [generate_schema_name](/docs/build/custom-schemas#how-does-dbt-generate-a-models-schema-name) macro, dbt Cloud might not drop the temporary schema from your data warehouse. For more information, refer to [Troubleshooting](/docs/deploy/ci-jobs#troubleshooting).
+## Git providers who support CI
+
+If your git provider has a native dbt Cloud integration, you can set up continuous integration (CI) jobs within dbt Cloud.
+
+| **Git provider** | **Native dbt Cloud integration** |[**Automated CI job**](/docs/deploy/ci-jobs)|**Git import with URL**| **Information**|
+| -----------------| ---------------------------------| -------------------------------------------|-----------------------|---------|
+|[Azure DevOps](/docs/cloud/git/setup-azure) | ✅| ✅ | ✅ | Organizations on the Team Plan can connect to Azure DeveOps via deploy key. Note, you won’t get the automated CI jobs but you can still develop.|
+|[GitHub](/docs/cloud/git/connect-github) | ✅ | ✅ | ✅ |
+|[GitLab](/docs/cloud/git/connect-gitlab) | ✅ | ✅ | ✅ |
+|All other git providers imported with a [git URL](/docs/cloud/git/import-a-project-by-git-url) ([BitBucket](/docs/cloud/git/import-a-project-by-git-url#bitbucket), [AWS CodeCommit](/docs/cloud/git/import-a-project-by-git-url#aws-codecommit), and others)| ❌ | ❌ | ✅ | Bitbucket doesn’t have a native dbt Cloud integration, refer to the [Customizing CI/CD with custom pipelines](/guides/custom-cicd-pipelines?step=1) guide to set up continuous integration and continuous deployment (CI/CD).|
+
+
+### No native integration
+
+import TiggeraCIJob from '/snippets/_trigger-a-ci-job.md';
+
+
+
+
+
+
## Differences between CI jobs and other deployment jobs
The [dbt Cloud scheduler](/docs/deploy/job-scheduler) executes CI jobs differently from other deployment jobs in these important ways:
diff --git a/website/snippets/_git-providers-supporting-ci.md b/website/snippets/_git-providers-supporting-ci.md
new file mode 100644
index 0000000000..057e882256
--- /dev/null
+++ b/website/snippets/_git-providers-supporting-ci.md
@@ -0,0 +1,8 @@
+If your git provider has a native dbt Cloud integration, you can set up continuous integration (CI) jobs within dbt Cloud.
+
+| **Git provider** | **Native dbt Cloud integration** |[**Automated CI job**](/docs/deploy/ci-jobs)|**Git import with URL**| **Information**|
+| -----------------| ---------------------------------| -------------------------------------------|-----------------------|---------|
+|[Azure DevOps](/docs/cloud/git/setup-azure) | ✅| ✅ | ✅ | Organizations on the Team Plan can connect to Azure DeveOps via deploy key. Note, you won’t get the automated CI jobs but you can still develop.|
+|[GitHub](/docs/cloud/git/connect-github) | ✅ | ✅ | ✅ |
+|[GitLab](/docs/cloud/git/connect-gitlab) | ✅ | ✅ | ✅ |
+|All other git providers imported with a [git URL](/docs/cloud/git/import-a-project-by-git-url) ([BitBucket](/docs/cloud/git/import-a-project-by-git-url#bitbucket), [AWS CodeCommit](/docs/cloud/git/import-a-project-by-git-url#aws-codecommit), and others)| ❌ | ❌ | ✅ | Bitbucket doesn’t have a native dbt Cloud integration, refer to the [Customizing CI/CD with custom pipelines](/guides/custom-cicd-pipelines?step=1) guide to set up continuous integration and continuous deployment (CI/CD). |
\ No newline at end of file
diff --git a/website/snippets/_trigger-a-ci-job.md b/website/snippets/_trigger-a-ci-job.md
new file mode 100644
index 0000000000..a5a0bb4637
--- /dev/null
+++ b/website/snippets/_trigger-a-ci-job.md
@@ -0,0 +1,2 @@
+If you're not using dbt Cloud’s native Git integration with [GitHub](/docs/cloud/git/connect-github), [GitLab](/docs/cloud/git/connect-gitlab), or [Azure DevOps](/docs/cloud/git/connect-azure-devops), you can use the [Administrative API](/docs/dbt-cloud-apis/admin-cloud-api) to trigger a CI job to run. However, dbt Cloud will not automatically delete the temporary schema for you. This is because automatic deletion relies on incoming webhooks from Git providers, which is only available through the native integrations.
+