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}`, });