From 0890be9f6b2c3856c5fd8d2087324c890bbd190e Mon Sep 17 00:00:00 2001 From: Jason Naylor Date: Wed, 25 Feb 2026 13:34:34 -0800 Subject: [PATCH] Don't update the PR with the results of the merge commit * If there are test failures on the merge the info is in the action and it will be visible from the commit in the code window --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7101ac04a2..931f28f727 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -76,6 +76,6 @@ jobs: with: files: 'test-results/**/*.trx' check_name: NUnit Tests - comment_mode: always + comment_mode: ${{ github.event_name == 'pull_request' && 'always' || 'off' }} job_summary: true fail_on: test failures