From 30fd24784e04aa897f8c762e6877edd6c78563ce Mon Sep 17 00:00:00 2001 From: Ramez Weissa Date: Mon, 26 Aug 2024 15:11:02 +0300 Subject: [PATCH] fix: undo bugs caused by coderabbit bad suggestions --- .github/workflows/deploy-to-control-plane-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-to-control-plane-review.yml b/.github/workflows/deploy-to-control-plane-review.yml index 65a56cd6..9d6a6d82 100644 --- a/.github/workflows/deploy-to-control-plane-review.yml +++ b/.github/workflows/deploy-to-control-plane-review.yml @@ -33,7 +33,7 @@ jobs: - name: Get PR HEAD Ref if: ${{ github.event_name == 'issue_comment' }} id: getRef - run: echo "PR_REF=$(gh pr view \"$PR_NUMBER\" --repo \"${{ github.repository }}\" --json headRefName | jq -r '.headRefName')" >> $GITHUB_OUTPUT + run: echo "PR_REF=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json headRefName | jq -r '.headRefName')" >> $GITHUB_OUTPUT env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}