From b514d7f78b67cd9c7681f46803c16123a16adbaf Mon Sep 17 00:00:00 2001 From: Talita Gregory Nunes Freire Date: Thu, 28 Apr 2022 09:43:27 +0200 Subject: [PATCH] fix: plugin version in package.json and getting started instructions Signed-off-by: Talita Gregory Nunes Freire --- plugins/github-pull-requests-board/README.md | 4 ++++ plugins/github-pull-requests-board/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/github-pull-requests-board/README.md b/plugins/github-pull-requests-board/README.md index 26691e838d..4976acbd7d 100644 --- a/plugins/github-pull-requests-board/README.md +++ b/plugins/github-pull-requests-board/README.md @@ -12,6 +12,10 @@ It will help you and your team stay on top of open pull requests, hopefully redu ## Getting started +Intall the plugin by running the following command **from your Backstage root directory** + +`yarn --cwd packages/app add @backstage/plugin-github-pull-requests-board` + The plugin exports the **TeamPullRequestsBoard** component which can be added to the Overview page of the team at `backstage/packages/app/src/components/catalog/EntityPage.tsx` ```javascript diff --git a/plugins/github-pull-requests-board/package.json b/plugins/github-pull-requests-board/package.json index 5e76257d5d..a6373e48ad 100644 --- a/plugins/github-pull-requests-board/package.json +++ b/plugins/github-pull-requests-board/package.json @@ -1,7 +1,7 @@ { "name": "@backstage/plugin-github-pull-requests-board", "description": "A Backstage plugin that allows you to see all open Pull Requests for all the repositories owned by your team", - "version": "0.1.0", + "version": "0.0.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0",