From 09a5cd6cfdb5a0108050539ef92b60d040ef01b8 Mon Sep 17 00:00:00 2001 From: Christopher Allen Date: Tue, 2 Nov 2021 21:05:56 +0000 Subject: [PATCH] chore: More spelunking in GitHub Action data Looking for information about PR that triggered original check_clang_format run. --- .github/workflows/report_clang_format.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/report_clang_format.yml b/.github/workflows/report_clang_format.yml index e491b1bd79e..faa35417842 100644 --- a/.github/workflows/report_clang_format.yml +++ b/.github/workflows/report_clang_format.yml @@ -25,5 +25,6 @@ jobs: with: script: | // Not sure yet how to find out which PR triggered the run, so - // dump the whole context object to try to find useful information. - console.log('%o', context); + // dump the whole github.event object to try to find useful + // information. + console.log('%o', github.event);