From 6fda348516f3891c450c810a718a6bd521497b70 Mon Sep 17 00:00:00 2001 From: Jon Vanausdeln Date: Thu, 11 Jul 2024 11:54:08 -0700 Subject: [PATCH] Add branch name to TestRail run (#3980) This adds the branch name to the buildup of the TestRail run name. Before this.. all test results looked the same. ### QA Notes Verified in TestRail vs a full smoke run https://posit.testrail.io/index.php?/runs/view/2900&group_by=cases:section_id&group_order=asc --- .github/workflows/positron-full-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/positron-full-test.yml b/.github/workflows/positron-full-test.yml index bc715015adc..45cf55582b6 100644 --- a/.github/workflows/positron-full-test.yml +++ b/.github/workflows/positron-full-test.yml @@ -126,7 +126,7 @@ jobs: - name: Set TestRail Run Title id: set-testrail-run-title if: always() - run: echo "TESTRAIL_TITLE=$(date +'%Y-%m-%d') Smoke Tests" >> $GITHUB_ENV + run: echo "TESTRAIL_TITLE=$(date +'%Y-%m-%d') Smoke Tests - $GITHUB_REF_NAME" >> $GITHUB_ENV - name: Upload Test Results to TestRail id: testrail-upload