From c3d5302d2ad106f5fe85338a974c8e55cbc22ee3 Mon Sep 17 00:00:00 2001 From: cheezwiz7899 Date: Sat, 2 May 2026 13:34:15 +1200 Subject: [PATCH] Do not change the status to Failed on a skipped run --- .github/workflows/build-android.yml | 2 +- .github/workflows/build-linux.yml | 2 +- .github/workflows/build-macos.yml | 2 +- .github/workflows/build-windows.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index 7dd6a44..09e924e 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -315,7 +315,7 @@ jobs: comment-end: name: Comment End needs: [check-version, build-android, build-android-8elite] - if: always() && needs.check-version.outputs.pr_number != '' + if: always() && needs.check-version.outputs.should_build == 'true' && needs.check-version.outputs.pr_number != '' runs-on: ubuntu-latest steps: - name: Update Master Comment (Results) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 86a8ceb..e617ade 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -253,7 +253,7 @@ jobs: comment-end: name: Comment End needs: [check-version, build] - if: always() && needs.check-version.outputs.pr_number != '' + if: always() && needs.check-version.outputs.should_build == 'true' && needs.check-version.outputs.pr_number != '' runs-on: ubuntu-latest steps: - name: Update Master Comment (Results) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index ac1a205..5be04ad 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -258,7 +258,7 @@ jobs: comment-end: name: Comment End needs: [check-version, build] - if: always() && needs.check-version.outputs.pr_number != '' + if: always() && needs.check-version.outputs.should_build == 'true' && needs.check-version.outputs.pr_number != '' runs-on: ubuntu-latest steps: - name: Update Master Comment (Results) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index b26d980..e70840f 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -287,7 +287,7 @@ jobs: comment-end: name: Comment End needs: [check-version, build-msvc, build-clangtron] - if: always() && needs.check-version.outputs.pr_number != '' + if: always() && needs.check-version.outputs.should_build == 'true' && needs.check-version.outputs.pr_number != '' runs-on: ubuntu-latest steps: - name: Update Master Comment (Results)