GitHub Actions Plugin
Website: https://github.com/actions
Table of Contents
Screenshots
TBD
Setup
Generic Requirements
-
Provide OAuth credentials:
- Create an OAuth App in the GitHub organization with the callback URL set to
http://localhost:7007/api/auth/github/handler/frame
.
Note: This can be done with a user account also. Depending on if you use a personal account or an organization account will change the repositories this is functional with
-
Take the Client ID and Client Secret from the newly created app's settings page and you can do either:
- Put them into
AUTH_GITHUB_CLIENT_ID
and AUTH_GITHUB_CLIENT_SECRET
environment variables. - Add them to the app-config like below:
auth:
providers:
github:
development:
clientId: ${AUTH_GITHUB_CLIENT_ID}
clientSecret: ${AUTH_GITHUB_CLIENT_SECRET}
-
Annotate your component with a correct GitHub Actions repository and owner:
The annotation key is github.com/project-slug
.
Example:
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: backstage
description: backstage.io
annotations:
github.com/project-slug: 'backstage/backstage'
spec:
type: website
lifecycle: production
owner: user:guest
Installation
- Install the plugin dependency in your Backstage app package:
yarn --cwd packages/app add @backstage-community/plugin-github-actions
Integrating with EntityPage
- Add to the app
EntityPage
component:
import {
EntityGithubActionsContent,
isGithubActionsAvailable,
} from '@backstage-community/plugin-github-actions';
const serviceEntityPage = (
<EntityLayout>
{/* other tabs... */}
<EntityLayout.Route path="/github-actions" title="GitHub Actions">
<EntityGithubActionsContent />
</EntityLayout.Route>
- Run the app with
yarn start
and the backend with yarn start-backend
.
Then navigate to /github-actions/
under any entity.
Integrating with EntityPage
(New Frontend System)
Follow this section if you are using Backstage's new frontend system.
- Import
githubActionsPlugin
in your App.tsx
and add it to your app's features
array:
import githubActionsPlugin from '@backstage-community/plugin-github-actions/alpha';
export const app = createApp({
features: [
githubActionsPlugin,
],
});
- Next, enable your desired extensions in
app-config.yaml
app:
extensions:
- entity-content:github-actions/entity
- entity-card:github-actions/latest-workflow-run
- entity-card:github-actions/latest-branch-workflow-runs
- entity-card:github-actions/recent-workflow-runs
- Whichever extensions you've enabled should now appear in your entity page.
Self-hosted / Enterprise GitHub
The plugin will try to use backstage.io/source-location
or backstage.io/managed-by-location
annotations to figure out the location of the source code.
- Add the
host
and apiBaseUrl
to your app-config.yaml
integrations:
github:
- host: 'your-github-host.com'
apiBaseUrl: 'https://api.your-github-host.com'
Features
- List workflow runs for a project
- Dive into one run to see a job steps
- Retry runs
- Pagination for runs
Limitations
- There is a limit of 100 apps for one OAuth client/token pair
Optional Workflow Runs Card View
Github Workflow Runs optional UI to show in Card view instead of table, with branch selection option
const serviceEntityPage = (
<EntityLayout>
{/* other tabs... */}
<EntityLayout.Route path="/github-actions" title="GitHub Actions">
<EntityGithubActionsContent view='cards' />
</EntityLayout.Route>