From a3236ad0ca2a05776dfee9d2e1251665e2b33ef6 Mon Sep 17 00:00:00 2001 From: Patrick Jungermann Date: Thu, 19 Oct 2023 15:23:53 +0200 Subject: [PATCH] docs(auth): fix links to repository in `README.md` Fix links at the `README.md` files of the gitlab auth provider and microsoft auth provider. Additionally, the wrong provider name was used at auth-backend within code documentation related to the microsoft provider. Signed-off-by: Patrick Jungermann --- .changeset/forty-monkeys-lay.md | 6 ++++++ plugins/auth-backend-module-gitlab-provider/README.md | 2 +- plugins/auth-backend-module-microsoft-provider/README.md | 4 ++-- plugins/auth-backend/src/providers/microsoft/provider.ts | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 .changeset/forty-monkeys-lay.md diff --git a/.changeset/forty-monkeys-lay.md b/.changeset/forty-monkeys-lay.md new file mode 100644 index 0000000000..b5fda56bf4 --- /dev/null +++ b/.changeset/forty-monkeys-lay.md @@ -0,0 +1,6 @@ +--- +'@backstage/plugin-auth-backend-module-microsoft-provider': patch +'@backstage/plugin-auth-backend-module-gitlab-provider': patch +--- + +Fix link to the repository in `README.md`. diff --git a/plugins/auth-backend-module-gitlab-provider/README.md b/plugins/auth-backend-module-gitlab-provider/README.md index b9eb561990..e9a4a6cca9 100644 --- a/plugins/auth-backend-module-gitlab-provider/README.md +++ b/plugins/auth-backend-module-gitlab-provider/README.md @@ -4,5 +4,5 @@ This module provides an GitLab auth provider implementation for `@backstage/plug ## Links -- [Repository](https://gitlab.com/backstage/backstage/tree/master/plugins/auth-backend-module-gitlab-provider) +- [Repository](https://github.com/backstage/backstage/tree/master/plugins/auth-backend-module-gitlab-provider) - [Backstage Project Homepage](https://backstage.io) diff --git a/plugins/auth-backend-module-microsoft-provider/README.md b/plugins/auth-backend-module-microsoft-provider/README.md index 5154f1644b..bd77ebfd3c 100644 --- a/plugins/auth-backend-module-microsoft-provider/README.md +++ b/plugins/auth-backend-module-microsoft-provider/README.md @@ -1,8 +1,8 @@ # Auth Module: Microsoft Provider -This module provides an Microsoft auth provider implementation for `@backstage/plugin-auth-backend`. +This module provides a Microsoft auth provider implementation for `@backstage/plugin-auth-backend`. ## Links -- [Repository](https://gitlab.com/backstage/backstage/tree/master/plugins/auth-backend-module-microsoft-provider) +- [Repository](https://github.com/backstage/backstage/tree/master/plugins/auth-backend-module-microsoft-provider) - [Backstage Project Homepage](https://backstage.io) diff --git a/plugins/auth-backend/src/providers/microsoft/provider.ts b/plugins/auth-backend/src/providers/microsoft/provider.ts index 8947c7432b..b004cb9651 100644 --- a/plugins/auth-backend/src/providers/microsoft/provider.ts +++ b/plugins/auth-backend/src/providers/microsoft/provider.ts @@ -32,7 +32,7 @@ import { } from '@backstage/plugin-auth-backend-module-microsoft-provider'; /** - * Auth provider integration for GitLab auth + * Auth provider integration for Microsoft auth * * @public */