From 4203dd0895c9ac9aec3a96e8fcf3b21f3b9d3f0f Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Mon, 17 Feb 2025 12:14:34 +0100 Subject: [PATCH] fix debug output Signed-off-by: Andreas Heinrich --- .github/workflows/continuous_integration.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index effc0aa..9b9bbfe 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -271,13 +271,14 @@ jobs: run: | if [ "${{ github.event_name }}" == "pull_request" ]; then if [ "${{ github.event.pull_request.head.repo.full_name }}" != "${{ github.repository }}" ]; then - echo "is_fork=true" >> $GITHUB_OUTPUT + is_fork=true else - echo "is_fork=false" >> $GITHUB_OUTPUT + is_fork=false fi else - echo "is_fork=false" >> $GITHUB_OUTPUT + is_fork=false fi + echo "is_fork=${is_fork}" >> $GITHUB_OUTPUT if [ "${is_fork}" == "true" ]; then echo "This is a forked PR" else