From 6566c4047c4cd1b7f57301be2ea7a4f89bc216ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Sat, 24 Jul 2021 15:49:54 +0200 Subject: [PATCH] ci: Debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs --- .github/workflows/metadata-label-pr-ci-status.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/metadata-label-pr-ci-status.yaml b/.github/workflows/metadata-label-pr-ci-status.yaml index 2f3e2476..1fd07240 100644 --- a/.github/workflows/metadata-label-pr-ci-status.yaml +++ b/.github/workflows/metadata-label-pr-ci-status.yaml @@ -85,7 +85,6 @@ jobs: id: get-workflow-jobs with: github-token: ${{ steps.get-app-token.outputs.token }} - debug: true script: | let result = new Map() @@ -95,6 +94,8 @@ jobs: run_id: context.payload.workflow_run.id, }) + console.log(wfJobs.data.jobs) + for (const job of wfJobs.data.jobs) { if (job.name === 'Lint charts') { result.set('lint', job.conclusion) @@ -103,6 +104,7 @@ jobs: } } + console.log(result) return result - name: Get result