From bc6526766bdd1cc0a3dd5637294a462cb40df594 Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Wed, 20 Sep 2023 18:20:33 +0200 Subject: [PATCH] Remove string result-encoding --- .github/workflows/label-stats.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/label-stats.yml b/.github/workflows/label-stats.yml index b92f734..b581bee 100644 --- a/.github/workflows/label-stats.yml +++ b/.github/workflows/label-stats.yml @@ -21,7 +21,6 @@ jobs: uses: actions/github-script@v6 id: stats with: - result-encoding: string script: | const query = `query($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { @@ -50,7 +49,7 @@ jobs: }); console.log(formattedData); - + return formattedData; - name: Write stats