From 84160313e737236047a7f5bc97513faa6200c679 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 1 Jun 2021 21:13:50 +0200 Subject: [PATCH] cli: mark create-github-app as ready for use Signed-off-by: Patrik Oldsberg --- .changeset/cool-poems-train.md | 5 +++++ packages/cli/src/commands/index.ts | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 .changeset/cool-poems-train.md 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))); }