From 7cc7edaee6f0e036ed90c20bd04e9c9fa9774c55 Mon Sep 17 00:00:00 2001 From: Sahil Ahuja Date: Thu, 6 Mar 2025 22:56:54 +0530 Subject: [PATCH] Fixing sending of repo name --- .github/workflows/cs-update-trigger.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/cs-update-trigger.yml b/.github/workflows/cs-update-trigger.yml index 23893fc..b2a8283 100644 --- a/.github/workflows/cs-update-trigger.yml +++ b/.github/workflows/cs-update-trigger.yml @@ -10,9 +10,6 @@ on: required: true type: string -env: - REPO: ${{ github.repository }} - jobs: trigger-cs-job: permissions: @@ -24,7 +21,7 @@ jobs: run: | SHA=${{ github.sha }}; BRANCH_NAME=${{ github.base_ref || github.ref_name }}; BUILD_ID=$BRANCH_NAME-${SHA:0:8}; - echo "REPO=$REPO >> $GITHUB_OUTPUT" + echo "REPO=${{ github.repository }} >> $GITHUB_OUTPUT" echo "TAG=$BUILD_ID" >> "$GITHUB_OUTPUT"; - name: Print repo and build_id