From 94e09b9613c285423ac0b401909bbd774c9ee5f4 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Wed, 14 Jan 2026 21:59:43 +0000 Subject: [PATCH] Fix incorrect branching in bash code anl --- .github/workflows/bash_code_analysis.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bash_code_analysis.yaml b/.github/workflows/bash_code_analysis.yaml index 7e57dc7a317..49de34ce403 100644 --- a/.github/workflows/bash_code_analysis.yaml +++ b/.github/workflows/bash_code_analysis.yaml @@ -23,7 +23,7 @@ jobs: uses: haya14busa/action-cond@v1 id: hash with: - cond: ${{ github.event_name == 'pull_request' }} + cond: ${{ github.event_name == 'pull_request_target' }} if_true: ${{ github.event.pull_request.head.sha }} if_false: '' @@ -37,7 +37,7 @@ jobs: uses: haya14busa/action-cond@v1 id: reporter with: - cond: ${{ github.event_name == 'pull_request' }} + cond: ${{ github.event_name == 'pull_request_target' }} if_true: 'github-pr-review' if_false: 'github-check' @@ -64,7 +64,7 @@ jobs: uses: haya14busa/action-cond@v1 id: hash with: - cond: ${{ github.event_name == 'pull_request' }} + cond: ${{ github.event_name == 'pull_request_target' }} if_true: ${{ github.event.pull_request.head.sha }} if_false: '' @@ -78,7 +78,7 @@ jobs: uses: haya14busa/action-cond@v1 id: reporter with: - cond: ${{ github.event_name == 'pull_request' }} + cond: ${{ github.event_name == 'pull_request_target' }} if_true: 'github-pr-review' if_false: 'github-check'