Merge pull request #5870 from backstage/chore/fix-app-id-config-schema

`GithubAppId` can be string or number for Environment Variables
This commit is contained in:
Ben Lambert
2021-06-01 16:05:38 +02:00
committed by GitHub
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/integration': patch
---
GitHub App ID can be a string too for environment variables otherwise it will fail validation
+2 -2
View File
@@ -89,9 +89,9 @@ export interface Config {
*/
apps?: Array<{
/**
* The numeric GitHub App ID
* The numeric GitHub App ID, string for environment variables
*/
appId: number;
appId: number | string;
/**
* The private key to use for auth against the app
* @visibility secret