From 18fd2748245d8e217868a3aa6260832200d6ca38 Mon Sep 17 00:00:00 2001 From: Christopher Allen Date: Tue, 2 Nov 2021 21:12:07 +0000 Subject: [PATCH] chore: More spelunking in GitHub Action data (#5673) 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 e491b1bd7..faa354178 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);