diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml
index 685908bb7..439994b74 100644
--- a/.github/workflows/test-docs.yml
+++ b/.github/workflows/test-docs.yml
@@ -2,11 +2,11 @@ name: Test docs
on:
push:
paths:
- - 'keep/poviders/**'
+ - 'keep/providers/**'
- 'docs/**'
pull_request:
paths:
- - 'keep/poviders/**'
+ - 'keep/providers/**'
- 'docs/**'
workflow_dispatch:
concurrency:
diff --git a/docs/providers/documentation/gke-provider.mdx b/docs/providers/documentation/gke-provider.mdx
index 416d6301e..b395d399d 100644
--- a/docs/providers/documentation/gke-provider.mdx
+++ b/docs/providers/documentation/gke-provider.mdx
@@ -1,7 +1,7 @@
---
-title: "GKE"
-sidebarTitle: "GKE Provider"
-description: "GKE provider allows managing Google Kubernetes Engine clusters and related resources."
+title: "Google Kubernetes Engine"
+sidebarTitle: "Google Kubernetes Engine Provider"
+description: "Google Kubernetes Engine provider allows managing Google Kubernetes Engine clusters and related resources."
---
## Inputs
diff --git a/docs/providers/documentation/teams-provider.mdx b/docs/providers/documentation/teams-provider.mdx
index 2a907da42..673b9dc07 100644
--- a/docs/providers/documentation/teams-provider.mdx
+++ b/docs/providers/documentation/teams-provider.mdx
@@ -1,7 +1,7 @@
---
-title: "Teams Provider"
-sidebarTitle: "Teams Provider"
-description: "Teams Provider is a provider that allows to notify alerts to Microsoft Teams chats."
+title: "Microsoft Teams Provider"
+sidebarTitle: "Microsoft Teams Provider"
+description: "Microsoft Teams Provider is a provider that allows to notify alerts to Microsoft Teams chats."
---
## Inputs
diff --git a/docs/providers/overview.mdx b/docs/providers/overview.mdx
index 74e1ddc87..3e8767f60 100644
--- a/docs/providers/overview.mdx
+++ b/docs/providers/overview.mdx
@@ -45,7 +45,7 @@ By leveraging Keep Providers, users are able to deeply integrate Keep with the t
/>
@@ -653,7 +653,7 @@ By leveraging Keep Providers, users are able to deeply integrate Keep with the t
>
diff --git a/scripts/docs_get_providers_list.py b/scripts/docs_get_providers_list.py
index e2459c12c..caee00c79 100644
--- a/scripts/docs_get_providers_list.py
+++ b/scripts/docs_get_providers_list.py
@@ -14,9 +14,8 @@
LOGO_DEV_PUBLISHABLE_KEY = "pk_dfXfZBoKQMGDTIgqu7LvYg"
-NON_DOCUMENTED_PROVIDERS = (
- []
-) # known not documented providers https://github.com/keephq/keep/issues/2033
+NON_DOCUMENTED_PROVIDERS = [
+]
def validate_overview_is_complete(documented_providers):
@@ -49,6 +48,7 @@ def validate_all_providers_are_documented(documented_providers):
if (
provider_name not in documented_providers
and provider_name not in NON_DOCUMENTED_PROVIDERS
+ and not provider.coming_soon
):
raise Exception(
f"""Provider "{provider_name}" is not documented in the docs/providers/documentation folder,