From 0120556d557d5df893ed21dbea2a4b1a7d664e9a Mon Sep 17 00:00:00 2001 From: daz Date: Wed, 10 Apr 2024 14:49:06 -0600 Subject: [PATCH] More logging --- .github/workflows/ci-integ-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-integ-test.yml b/.github/workflows/ci-integ-test.yml index e1d4c65..9593f21 100644 --- a/.github/workflows/ci-integ-test.yml +++ b/.github/workflows/ci-integ-test.yml @@ -21,8 +21,8 @@ jobs: script: | // Always run quick suite if we are not in the core `gradle/actions` repository // This reduces the load for developers working on forks - console.log(github.context) console.log(context.repo) + console.log(process.env.GITHUB_REPOSITORY) - name: Get current PR details uses: 8BitJonny/gh-get-current-pr@3.0.0 id: PR @@ -67,7 +67,7 @@ jobs: // Always run quick suite if we are not in the core `gradle/actions` repository // This reduces the load for developers working on forks console.log(context.repo) - if (context.repo.repo !== 'gradle/actions') { + if ("${context.repo.owner}/${context.repo.repo}" !== 'gradle/actions') { console.log('Not in core repository: suite=quick') return 'quick' }