From ecfcc03ef002901dec8d7fcf019cfd763b849c90 Mon Sep 17 00:00:00 2001 From: sriram veeraghanta Date: Fri, 15 Dec 2023 17:12:57 +0530 Subject: [PATCH] fix: removing unneccessary checks (#3150) --- .github/workflows/create-sync-pr.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/create-sync-pr.yml b/.github/workflows/create-sync-pr.yml index b4e04374fc..0f85e940c9 100644 --- a/.github/workflows/create-sync-pr.yml +++ b/.github/workflows/create-sync-pr.yml @@ -19,14 +19,12 @@ jobs: contents: read steps: - name: Checkout Code - if: steps.check_repo.outputs.is_correct_repo == 'true' uses: actions/checkout@v2 with: persist-credentials: false fetch-depth: 0 - name: Setup GH CLI - if: steps.check_repo.outputs.is_correct_repo == 'true' run: | type -p curl >/dev/null || (sudo apt update && sudo apt install curl -y) curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg @@ -36,7 +34,6 @@ jobs: sudo apt install gh -y - name: Create Pull Request - if: steps.check_repo.outputs.is_correct_repo == 'true' env: GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} run: |