From 09286fefa77a971fc44f6f42db7b01696b41ddb4 Mon Sep 17 00:00:00 2001 From: Talita Gregory Nunes Freire Date: Fri, 22 Apr 2022 20:24:42 +0200 Subject: [PATCH] feat: logo and plugin information added Signed-off-by: Talita Gregory Nunes Freire --- .../plugins/github-pull-requests-board.yaml | 9 ++++++ .../img/github-pull-requests-board-logo.svg | 30 +++++++++++++++++++ plugins/github-pull-requests-board/README.md | 4 +-- 3 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 microsite/data/plugins/github-pull-requests-board.yaml create mode 100644 microsite/static/img/github-pull-requests-board-logo.svg diff --git a/microsite/data/plugins/github-pull-requests-board.yaml b/microsite/data/plugins/github-pull-requests-board.yaml new file mode 100644 index 0000000000..90feb84010 --- /dev/null +++ b/microsite/data/plugins/github-pull-requests-board.yaml @@ -0,0 +1,9 @@ +--- +title: Github Pull Requests Board +author: DAZN +authorUrl: https://engineering.dazn.com/ +category: Source Control Mgmt +description: View All open GitHub pull requests owned by your team in Backstage. +documentation: https://github.com/backstage/backstage/tree/master/plugins/github-pull-requests-board +iconUrl: img/github-pull-requests-board-logo.svg +npmPackageName: '@backstage/plugin-github-pull-requests-board' \ No newline at end of file diff --git a/microsite/static/img/github-pull-requests-board-logo.svg b/microsite/static/img/github-pull-requests-board-logo.svg new file mode 100644 index 0000000000..0114b50d08 --- /dev/null +++ b/microsite/static/img/github-pull-requests-board-logo.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/plugins/github-pull-requests-board/README.md b/plugins/github-pull-requests-board/README.md index 6205a34d95..26691e838d 100644 --- a/plugins/github-pull-requests-board/README.md +++ b/plugins/github-pull-requests-board/README.md @@ -12,7 +12,7 @@ It will help you and your team stay on top of open pull requests, hopefully redu ## Getting started -The plugin exports the **TeamPullRequestsBoard** component which can be added to the Overview page ot the team at `backstage/packages/app/src/components/catalog/EntityPage.tsx` +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 import { TeamPullRequestsBoard } from '@backstage/plugin-github-pull-requests-board'; @@ -43,7 +43,7 @@ const groupPage = ( ); ``` -Or you can also import the **TeamPullRequestsPage** component which can be used to add a new page on the group page at `backstage/packages/app/src/components/catalog/EntityPage.tsx` +Or you can also import the **TeamPullRequestsPage** component which can be used to add a new tab under the group page at `backstage/packages/app/src/components/catalog/EntityPage.tsx` ```javascript import { TeamPullRequestsPage } from '@backstage/plugin-github-pull-requests-board';