From 26f57f65200ceee7e76b9c4cbc4fd368fd736796 Mon Sep 17 00:00:00 2001 From: Olabode Lawal-Shittabey Date: Fri, 26 Apr 2024 13:12:31 +0100 Subject: [PATCH 1/2] fix: typo in `Write credentials into a `.env` file.` section of README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d735d8b..0bccfcf 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ const appCredentials = await registerGitHubApp({ issues: "write", }, // List of events for new installations - evedefault_events: ["issues"], + default_events: ["issues"], }); // convert private key to pkcs8 format (recommended for better cross plattform support) From 0f65b11e4c13a102e58f5909d84c183764862bcb Mon Sep 17 00:00:00 2001 From: Olabode Lawal-Shittabey Date: Fri, 26 Apr 2024 13:15:01 +0100 Subject: [PATCH 2/2] fix: typo in `Register an app on an organization` README section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0bccfcf..245545f 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ const appCredentials = await registerGitHubApp({ issues: "write", }, // List of events for new installations - evedefault_events: ["issues"], + default_events: ["issues"], }); ```