diff --git a/.changeset/migrate-1713465852581.md b/.changeset/migrate-1713465852581.md new file mode 100644 index 0000000000..40e1e19c85 --- /dev/null +++ b/.changeset/migrate-1713465852581.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-allure': patch +--- + +These packages have been migrated to the [backstage/community-plugins](https://github.com/backstage/community-plugins) repository. diff --git a/plugins/allure/README.md b/plugins/allure/README.md index 22348385a3..3eec6a4a4f 100644 --- a/plugins/allure/README.md +++ b/plugins/allure/README.md @@ -1,40 +1,3 @@ -# [Allure](https://docs.qameta.io/allure/) +# Deprecated -Welcome to the Backstage Allure plugin. This plugin add an entity service page to display Allure test reports related to the service. - -## Install - -```shell -# From your Backstage root directory -yarn --cwd packages/app add @backstage/plugin-allure -``` - -## Configure - -### Configure Allure service - -Add below configuration in the `app-config.yaml`. - -```yaml -allure: - baseUrl: # Example: https://allure.my-company.net or when running allure locally, http://localhost:5050/allure-docker-service -``` - -### Setup entity service page - -Add `EntityAllureReportContent` in the `EntityPage.tsx` like below: - -```diff -+ import { EntityAllureReportContent } from '@backstage/plugin-allure'; - -... - -const serviceEntityPage = ( - - ... -+ -+ -+ - -); -``` +This package has been moved to the [backstage-community/plugins](https://github.com/backstage/community-plugins) repository. Migrate to using `@backstage-community/plugin-allure` instead. diff --git a/plugins/allure/package.json b/plugins/allure/package.json index ab4e7f3e31..c44f32baed 100644 --- a/plugins/allure/package.json +++ b/plugins/allure/package.json @@ -3,7 +3,8 @@ "version": "0.1.50", "description": "A Backstage plugin that integrates with Allure", "backstage": { - "role": "frontend-plugin" + "role": "frontend-plugin", + "moved": "@backstage-community/plugin-allure" }, "publishConfig": { "access": "public", @@ -69,5 +70,6 @@ } } } - } + }, + "deprecated": "This package has been moved to the backstage/community-plugins repository. You should migrate to using @backstage-community/plugin-allure instead." }