From fd4ca0035747be9b9fa364cf1a4ee0721f010237 Mon Sep 17 00:00:00 2001 From: Julian Date: Thu, 14 Sep 2023 15:26:38 +0200 Subject: [PATCH] feat: Include branch name --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 20d24b5..bd75607 100644 --- a/src/main.ts +++ b/src/main.ts @@ -132,7 +132,7 @@ class TestReporter { await post( `TestResults?Secret=${this.resultsEndpointSecret}${version ? '&EVAVersion=' + version : ''}${ commitID ? '&EVACommitID=' + commitID : '' - }`, + }&EVABranch=${encodeURI(this.context.branch)}`, readStream ) core.info(`Uploaded TRX files`)