From 630be24a4d112ff498a8afcbd38b4ec93b45bec6 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Thu, 7 Jan 2021 11:01:47 +0100 Subject: [PATCH] Added comment about lacking GHE support --- packages/cli/src/commands/create-github-app/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/cli/src/commands/create-github-app/index.ts b/packages/cli/src/commands/create-github-app/index.ts index e10b720d4b..b8d232674e 100644 --- a/packages/cli/src/commands/create-github-app/index.ts +++ b/packages/cli/src/commands/create-github-app/index.ts @@ -20,6 +20,9 @@ import { stringify as stringifyYaml } from 'yaml'; import { paths } from '../../lib/paths'; import { GithubCreateAppServer } from './GithubCreateAppServer'; +// This is an experimental command that at this point does not support GitHub Enterprise +// due to lacking support for creating apps from manifests. +// https://docs.github.com/en/free-pro-team@latest/developers/apps/creating-a-github-app-from-a-manifest export default async (org: string) => { const { slug, name, ...config } = await GithubCreateAppServer.run({ org });