diff --git a/README.md b/README.md index f8bf86ffad93b..32db44a1139bb 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,9 @@ If you're looking to build & modify datahub please take a look at our [Developme - [acryldata/datahub-actions](https://github.com/acryldata/datahub-actions): DataHub Actions is a framework for responding to changes to your DataHub Metadata Graph in real time. - [acryldata/datahub-helm](https://github.com/acryldata/datahub-helm): Repository of helm charts for deploying DataHub on a Kubernetes cluster - [acryldata/meta-world](https://github.com/acryldata/meta-world): A repository to store recipes, custom sources, transformations and other things to make your DataHub experience magical +- [dbt-impact-action](https://github.com/acryldata/dbt-impact-action) : This repository contains a github action for commenting on your PRs with a summary of the impact of changes within a dbt project +- [datahub-tools](https://github.com/makenotion/datahub-tools) : Additional python tools to interact with the DataHub GraphQL endpoints, built by Notion +- [business-glossary-sync-action](https://github.com/acryldata/business-glossary-sync-action) : This repository contains a github action that opens PRs to update your business glossary yaml file. ## Releases diff --git a/docs-website/src/pages/docs/index.js b/docs-website/src/pages/docs/index.js index 53f6bcba5d28f..a0462091a046d 100644 --- a/docs-website/src/pages/docs/index.js +++ b/docs-website/src/pages/docs/index.js @@ -18,6 +18,9 @@ import { LockTwoTone, SlackOutlined, HistoryOutlined, + InteractionOutlined, + GlobalOutlined, + FileTextOutlined, } from "@ant-design/icons"; //quickLinkCards @@ -200,6 +203,39 @@ const quickLinkContent = [ }, ]; +const gitLinkContent = [ + { + title: "datahub", + icon: , + to: "https://github.com/datahub-project/datahub", + }, + { + title: "datahub-actions", + icon: , + to: "https://github.com/acryldata/datahub-actions", + }, + { + title: "datahub-helm", + icon: , + to: "https://github.com/acryldata/datahub-helm", + }, + { + title: "meta-world", + icon: , + to: "https://github.com/acryldata/meta-world", + }, + { + title: "business-glossary-sync-action", + icon: , + to: "https://github.com/acryldata/business-glossary-sync-action", + }, + { + title: "dbt-impact-action", + icon: , + to: "https://github.com/acryldata/dbt-impact-action", + }, +]; + function Docs() { const context = useDocusaurusContext(); const { siteConfig = {} } = context; @@ -235,6 +271,14 @@ function Docs() { content={featureGuideContent} seeMoreLink={{ label: "See all guides", to: "/docs/how/search" }} /> +