From 991e13ca86e48482e73d5e1cb15829935c21655c Mon Sep 17 00:00:00 2001 From: Brandon Shien Date: Tue, 8 Oct 2024 13:48:44 -0700 Subject: [PATCH] Changed S3 bucket name to opensearch-project-github-events Signed-off-by: Brandon Shien --- src/call/github-events-to-s3.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/call/github-events-to-s3.ts b/src/call/github-events-to-s3.ts index a188055..8ce07e9 100644 --- a/src/call/github-events-to-s3.ts +++ b/src/call/github-events-to-s3.ts @@ -24,7 +24,7 @@ export default async function githubEventsToS3(app: Probot, context: any, resour try { const s3Client = new S3Client({ region: String(process.env.REGION) }); const putObjectCommand = new PutObjectCommand({ - Bucket: 'github-events', + Bucket: 'opensearch-project-github-events', Body: JSON.stringify(context), Key: `${context.name}/${year}-${month}-${day}/${context.id}`, });