
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@backstage-community/plugin-github-pull-requests-board
Advanced tools
A Backstage plugin that allows you to see all open Pull Requests for all the repositories owned by your team
The GitHub Pull Requests Board Plugin helps to visualise all Open Pull Requests related to the owned team repository.

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.
read-only permission granted for Pull Requests)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>;
)
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,
// ...
],
});
FAQs
A Backstage plugin that allows you to see all open Pull Requests for all the repositories owned by your team
The npm package @backstage-community/plugin-github-pull-requests-board receives a total of 5,214 weekly downloads. As such, @backstage-community/plugin-github-pull-requests-board popularity was classified as popular.
We found that @backstage-community/plugin-github-pull-requests-board demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.