From aa2270df8b83498697ab617f544e8c03b6b1cacb Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 2 Jun 2025 11:53:06 +0200 Subject: [PATCH] Disable token on the script --- action.yml | 1 + scripts/main.ps1 | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index c93f598..8c84389 100644 --- a/action.yml +++ b/action.yml @@ -25,6 +25,7 @@ runs: env: GITHUB_ACTION_INPUT_IssueBody: ${{ inputs.IssueBody }} with: + Token: '' ShowOutput: true Script: | # Get-IssueFormData diff --git a/scripts/main.ps1 b/scripts/main.ps1 index 35a48a6..147493a 100644 --- a/scripts/main.ps1 +++ b/scripts/main.ps1 @@ -5,8 +5,6 @@ [CmdletBinding()] param() -$PSStyle.OutputRendering = 'Ansi' - LogGroup 'Issue Body - Raw' { Write-Output $env:GITHUB_ACTION_INPUT_IssueBody }