New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@backstage-community/plugin-github-pull-requests-board

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@backstage-community/plugin-github-pull-requests-board

A Backstage plugin that allows you to see all open Pull Requests for all the repositories owned by your team

latest
Source
npmnpm
Version
0.16.0
Version published
Weekly downloads
6.5K
-9.56%
Maintainers
1
Weekly downloads
 
Created
Source

GitHub Pull Requests Board Plugin

The GitHub Pull Requests Board Plugin helps to visualise all Open Pull Requests related to the owned team repository.

github-pull-requests-board

It will help you and your team stay on top of open pull requests, hopefully reducing the time from open to merged. It's particularly useful when your team deals with many repositories.

Prerequisites

  • GitHub Authentication Provider (With read-only permission granted for Pull Requests)

Getting started

Install the plugin by running the following command from your Backstage root directory

yarn --cwd packages/app add @backstage-community/plugin-github-pull-requests-board

The plugin exports the EntityTeamPullRequestsCard component which can be added to the Overview page of the team at backstage/packages/app/src/components/catalog/EntityPage.tsx

import { EntityTeamPullRequestsCard } from '@backstage-community/plugin-github-pull-requests-board';

const groupPage = (
  <EntityLayoutWrapper>
    <EntityLayout.Route path="/" title="Overview">
      <Grid container spacing={3}>
        {entityWarningContent}
        <Grid item xs={12} md={6}>
          <EntityGroupProfileCard variant="gridItem" />
        </Grid>
        <Grid item xs={12} md={6}>
          <EntityOwnershipCard
            variant="gridItem"
            entityFilterKind={customEntityFilterKind}
          />
        </Grid>
        <Grid item xs={12}>
          <EntityMembersListCard />
        </Grid>
        <Grid item xs={12}>
          <EntityTeamPullRequestsCard />
        </Grid>
      </Grid>
    </EntityLayout.Route>
  </EntityLayoutWrapper>
);

Or you can also import the EntityTeamPullRequestsContent component which can be used to add a new tab under the group page at backstage/packages/app/src/components/catalog/EntityPage.tsx

import { EntityTeamPullRequestsContent } from '@backstage-community/plugin-github-pull-requests-board';

const groupPage = (
    <EntityLayoutWrapper>
        <EntityLayout.Route path="/" title="Overview">
            <Grid container spacing={3}>
            {entityWarningContent}
            <Grid item xs={12} md={6}>
                <EntityGroupProfileCard variant="gridItem" />
            </Grid>
            <Grid item xs={12} md={6}>
                <EntityOwnershipCard
                variant="gridItem"
                entityFilterKind={customEntityFilterKind}
                />
            </Grid>
            <Grid item xs={12}>
                <EntityMembersListCard />
            </Grid>
            </Grid>
        </EntityLayout.Route>
        <EntityLayout.Route path="/pull-requests" title="Pull Requests">
            <EntityTeamPullRequestsContent />
        </EntityLayout.Route>
    </EntityLayoutWrapper>;
)

Integrating with the new Frontend System

Follow this section if you are using Backstage's new frontend system.

Import githubPullRequestsPlugin in your App.tsx and add it to your app's features array:

import githubPullRequestsPlugin from '@backstage-community/plugin-github-pull-requests-board/alpha';
// ...
export const app = createApp({
  features: [
    // ...
    githubPullRequestsPlugin,
    // ...
  ],
});

Keywords

backstage

FAQs

Package last updated on 03 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts