Skip to main content

GitHub Catalog Discovery

Plugin details
Created byBackstage core
CategoryCatalog automated discovery
SourceGitHub
TypeOpen-source plugin

Configuration

Application configuration YAML

This plugin enables you to configure rules based on which the entity definition files (for example, catalog-info.yaml) can be auto-discovered from your GitHub organizations and repositories. Once you've configure rules, you no longer need to manually register all the catalog information YAML files. Any new files created will also be automatically registered with the catalog.

Go to the official documentation to understand the YAML configuration for this plugin. Here is an example:

catalog:
providers:
github:
# the provider ID can be any camelCase string
providerId:
organization: 'backstage' # string
catalogPath: '/catalog-info.yaml' # string
filters:
branch: 'main' # string
repository: '.*' # Regex
customProviderId:
organization: 'new-org' # string
catalogPath: '/custom/path/catalog-info.yaml' # string
filters: # optional filters
branch: 'develop' # optional string
repository: '.*' # optional Regex
wildcardProviderId:
organization: 'new-org' # string
catalogPath: '/groups/**/*.yaml' # this will search all folders for files that end in .yaml
filters: # optional filters
branch: 'develop' # optional string
repository: '.*' # optional Regex
topicProviderId:
organization: 'backstage' # string
catalogPath: '/catalog-info.yaml' # string
filters:
branch: 'main' # string
repository: '.*' # Regex
topic: 'backstage-exclude' # optional string
topicFilterProviderId:
organization: 'backstage' # string
catalogPath: '/catalog-info.yaml' # string
filters:
branch: 'main' # string
repository: '.*' # Regex
topic:
include: ['backstage-include'] # optional array of strings
exclude: ['experiments'] # optional array of strings
visibilityProviderId:
organization: 'backstage' # string
catalogPath: '/catalog-info.yaml' # string
filters:
visibility:
- public
- internal
enterpriseProviderId:
host: ghe.example.net
organization: 'backstage' # string
catalogPath: '/catalog-info.yaml' # string

Secrets

Make sure that you have a GitHub connector configured on your IDP Admin > Connectors page. This plugin does not need any additional secrets.

Delegate proxy

No action required

This plugin does not require a delegate proxy to be set up because GitHub is publicly accessible. If you are using GitHub Enterprise, the GitHub connector will already have the delegate information.

Layout

No action required

This plugin does not export any layout components.

Annotations

No action required

This plugin does not need any catalog-info.yaml annotations to work.

Support

The plugin is owned by Backstage core and managed in the Backstage official repository as an open-source project. Create a GitHub issue to report bugs or suggest new features for the plugin.