From c938f7a21247f69b29cf352d0c6890a63f260d47 Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Mon, 17 Mar 2025 16:32:13 -0700 Subject: [PATCH] ci: add debugging to github workflows --- .github/workflows/issues-scan.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/issues-scan.yml b/.github/workflows/issues-scan.yml index bb077490..5f09396f 100755 --- a/.github/workflows/issues-scan.yml +++ b/.github/workflows/issues-scan.yml @@ -305,7 +305,8 @@ jobs: github-token: ${{ secrets.ADMINSERV_TOKEN_CL }} script: | console.log('Running Autoscan') - console.log(JSON.stringify(`${ context }`, null, 4)) + console.log(JSON.stringify(context, null, 4)); + console.log(JSON.stringify(github, null, 4)); const fs = require( 'fs' ); const escape_html = ( unsafe ) => unsafe.replace( /&/g, '&' ).replace( //g, '>' ).replace( /"/g, '"' ).replace( /'/g, ''' );