From ef921f2d5d2b94caf9a6b2a7982a0a84bc079b45 Mon Sep 17 00:00:00 2001 From: Chase King Date: Tue, 4 Mar 2025 16:54:57 -0500 Subject: [PATCH] Changed the way we get source branch name --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 904fb5dc..d2e60ca8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -158,8 +158,8 @@ stages: # (($num_failures -eq 0)) && jira_message='Playwright tests passed!' || jira_message=\"$num_failures Playwright tests failed.\" # TODO: Update to include test status message later echo \"Contents of ortoni-report:\" && ls ./ortoni-report && - branch_name="$(System.PullRequest.SourceBranch)" - jira_card_number="${branch_name##*/}" + branch_name=$(git rev-parse --abbrev-ref HEAD) # Had to do it this way because Build.SourceBranchName is always "merge" on PR + jira_card_number="${branch_name##*/}" # Grab everything after last "/"" echo \"Writing report to Jira card '$jira_card_number'...\" && ./devops/scripts/jira_writeback.sh add_comment \"$jira_card_number\" /app/ortoni-report/ortoni-report.html \"AUTOMATED TEST RUN: $(date)\" ")