See GitHub Actions builds in Backstage
Install the plugin
yarn add @backstage/plugin-github-actions
Import it into your Backstage application
// packages/app/src/plugins.ts
export { plugin as GithubActions } from '@backstage/plugin-github-actions';
Heres where things get good...
// packages/app/src/apis.ts
import { GithubActionsClient, githubActionsApiRef } from '@backstage/plugin-github-actions';
export const apis = (config: ConfigApi) => {
// ... existing code here.
builder.add(githubActionsApiRef, new GithubActionsClient());
};
To get the latest news, deep dives into Backstage features, and a roundup of recent open-source action, sign up for Roadie's Backstage Weekly. See recent editions.