diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 92427832eed..94e47af18ad 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -26,6 +26,8 @@ jobs: # For macOS, Ninja is slower than the default: #CMAKE_GENERATOR: Ninja steps: + - name: Debugging + run: echo "SKIP=${{ needs.skip_checks.outputs }}" - name: Checkout code uses: actions/checkout@v4 - name: Install Python diff --git a/.github/workflows/skip_checks.yml b/.github/workflows/skip_checks.yml index e3bf538ee25..dd4e1970d74 100644 --- a/.github/workflows/skip_checks.yml +++ b/.github/workflows/skip_checks.yml @@ -20,5 +20,7 @@ jobs: ${{ github.event.pull_request.head.ref }} \ ${{ github.event.pull_request.base.ref }} \ ${{ github.event.pull_request.head.repo.clone_url }} + - name: Debug + run: echo "env.SKIP_CHECKS=${{ env.SKIP_CHECKS }}" outputs: skip: ${{ env.SKIP_CHECKS }}