From 0d6fa079b4c58ab3a01cb0959a7c7fee673428e8 Mon Sep 17 00:00:00 2001 From: Stephen Von Worley Date: Mon, 25 Mar 2024 12:02:20 -0700 Subject: [PATCH] modify lambda to process "removed" action for installation_repositories event --- upsertGitHubTag/deployment/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upsertGitHubTag/deployment/index.js b/upsertGitHubTag/deployment/index.js index 08becc2..f516c7c 100644 --- a/upsertGitHubTag/deployment/index.js +++ b/upsertGitHubTag/deployment/index.js @@ -166,7 +166,7 @@ function processEvent(event, callback) { var githubEventType = requestBody["X-GitHub-Event"]; // Handle installation events if (githubEventType === "installation_repositories") { - // The installation_repositories event contains information about both additions and removals + // The installation_repositories event contains information about both additions and removals. console.log("Valid installation event"); path += "workflows/github/install"; postEndpoint(path, body, deliveryId, (response) => {