From 06cb87dccc3f2d9d8d161b9e2ab1273450c6045f Mon Sep 17 00:00:00 2001 From: Arjun Attam Date: Sat, 24 May 2025 22:13:41 +0530 Subject: [PATCH] feat: slugify the environment into lowercase --- dist/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index f47a34b..57f57a9 100644 --- a/dist/index.js +++ b/dist/index.js @@ -29407,7 +29407,7 @@ async function run() { commit_url: getCommitUrl(), }, platform, - environment, + environment: environment.toLowerCase(), github_actor: await getActor(), }) }); diff --git a/src/main.ts b/src/main.ts index d5d5a77..696ad2f 100644 --- a/src/main.ts +++ b/src/main.ts @@ -198,7 +198,7 @@ export async function run(): Promise { commit_url: getCommitUrl(), }, platform, - environment, + environment: environment.toLowerCase(), github_actor: await getActor(), }) });