diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index f6b0e610b..b71a917f4 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -122,11 +122,13 @@ We recommend the following flow if you are having issues with running Hive local ``` INTEGRATION_GITHUB=1 INTEGRATION_GITHUB_GITHUB_APP_ID= - INTEGRATION_GITHUB_GITHUB_APP_PRIVATE_KEY= ``` You'll find the GitHub App ID and private key in the `General` tab of your GitHub App. + Store the Github private key next to the `.env` file with the name `github-app.pem` + (`packages/services/server/github-app.pem`) + 2. Web App: Set the following in `packages/web/app/.env`: ``` INTEGRATION_GITHUB_APP_NAME= diff --git a/packages/services/api/src/modules/integrations/providers/github-integration-manager.ts b/packages/services/api/src/modules/integrations/providers/github-integration-manager.ts index e77da42f2..13c36fa87 100644 --- a/packages/services/api/src/modules/integrations/providers/github-integration-manager.ts +++ b/packages/services/api/src/modules/integrations/providers/github-integration-manager.ts @@ -314,7 +314,7 @@ export class GitHubIntegrationManager { check_run_id: args.githubCheckRun.id, conclusion: args.conclusion, output: args.output, - detailsUrl: args.detailsUrl ?? undefined, + details_url: args.detailsUrl ?? undefined, }); this.logger.debug('Check-run updated (link=%s)', result.data.url);