Merge pull request #10935 from backstage/jhaals/apps-cli

cli: Add config instructions to create-github-app command
This commit is contained in:
Johan Haals
2022-04-20 13:17:44 +02:00
committed by GitHub
2 changed files with 16 additions and 1 deletions
@@ -35,5 +35,15 @@ export default async (org: string) => {
'This file contains sensitive credentials, it should not be committed to version control and handled with care!',
),
);
// TODO: log instructions on how to use the newly created app configuration.
console.log(
"Here's an example on how to update the integrations section in app-config.yaml",
);
console.log(
chalk.green(`
integrations:
github:
- host: github.com
apps:
- $include: ${fileName}`),
);
};