diff --git a/.changeset/cool-poems-train.md b/.changeset/cool-poems-train.md new file mode 100644 index 0000000000..fb4ba6621e --- /dev/null +++ b/.changeset/cool-poems-train.md @@ -0,0 +1,5 @@ +--- +'@backstage/cli': patch +--- + +Mark the `create-github-app` command as ready for use and reveal it in the command list. diff --git a/packages/cli/src/commands/index.ts b/packages/cli/src/commands/index.ts index ae39941106..892c5459da 100644 --- a/packages/cli/src/commands/index.ts +++ b/packages/cli/src/commands/index.ts @@ -225,10 +225,8 @@ export function registerCommands(program: CommanderStatic) { .action(lazy(() => import('./buildWorkspace').then(m => m.default))); program - .command('create-github-app ', { hidden: true }) - .description( - 'Create new GitHub App in your organization. This command is experimental and may change in the future.', - ) + .command('create-github-app ') + .description('Create new GitHub App in your organization.') .action(lazy(() => import('./create-github-app').then(m => m.default))); }