From 096d763560368d37f0648399285875ddbd0fddcc Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sat, 4 Oct 2025 21:42:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Remove=20redundant=20?= =?UTF-8?q?GitHub=20event=20context=20logging=20from=20`main.ps1`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/main.ps1 | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/scripts/main.ps1 b/scripts/main.ps1 index dd6faea..43cbb17 100644 --- a/scripts/main.ps1 +++ b/scripts/main.ps1 @@ -11,22 +11,6 @@ LogGroup 'Context: [GITHUB]' { $CONTEXT_GITHUB | ConvertTo-Json -Depth 100 } -LogGroup 'Context: [GITHUB_EVENT]' { - $CONTEXT_GITHUB.event | ConvertTo-Json -Depth 100 -} - -LogGroup 'Context: [GITHUB_EVENT_ENTERPRISE]' { - $CONTEXT_GITHUB | ConvertTo-Json -Depth 100 -} - -LogGroup 'Context: [GITHUB_EVENT_ORGANIZATION]' { - $CONTEXT_GITHUB.event.organization | ConvertTo-Json -Depth 100 -} - -LogGroup 'Context: [GITHUB_EVENT_REPOSITORY]' { - $CONTEXT_GITHUB.event.repository | ConvertTo-Json -Depth 100 -} - LogGroup 'Context: [ENV]' { $env:CONTEXT_ENV }