From 4d962985f47e1d63862c44c1b9e551b5f77e597e Mon Sep 17 00:00:00 2001 From: Guillaume Vernieres Date: Wed, 12 Jun 2024 17:53:31 -0400 Subject: [PATCH] tidy ... --- ci/gw_driver.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/gw_driver.sh b/ci/gw_driver.sh index 1148f7c92..604cd8043 100755 --- a/ci/gw_driver.sh +++ b/ci/gw_driver.sh @@ -76,14 +76,14 @@ for pr in $open_pr_list; do # get the fork information pr_details=$(gh pr view ${companion_pr} --repo ${workflow_url} --json headRepository,headRepositoryOwner,headRefName) - # Extract the necessary details + # extract the necessary info fork_owner=$(echo "$pr_details" | jq -r '.headRepositoryOwner.login') fork_name=$(echo "$pr_details" | jq -r '.headRepository.name') # Construct the fork URL workflow_url="https://github.com/$fork_owner/$fork_name.git" - echo "Fork URL: $fork_url" + echo "Fork URL: $workflow_url" echo "Branch Name: $gdasapp_branch" fi