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:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/integration': patch
|
||||
---
|
||||
|
||||
GitHub App ID can be a string too for environment variables otherwise it will fail validation
|
||||
Vendored
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user