From 5e9b2bc2ce092288f3fbcb251699057ff790e520 Mon Sep 17 00:00:00 2001 From: CalvinWilkinson Date: Mon, 27 Jan 2025 22:08:37 +0000 Subject: [PATCH] cicd: remove if logic from job steps --- .github/workflows/sync-bot.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/sync-bot.yml b/.github/workflows/sync-bot.yml index dbce8f0b..5c12c77c 100644 --- a/.github/workflows/sync-bot.yml +++ b/.github/workflows/sync-bot.yml @@ -17,13 +17,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Set Up Deno - if: startsWith(github.ref_name, 'feature/') uses: denoland/setup-deno@v1 with: deno-version: ${{ vars.DENO_VERSION }} - name: Run Sync Bot (Issue Change) - if: startsWith(github.ref_name, 'feature/') run: | $scriptUrl = "${{ vars.SCRIPT_BASE_URL }}/${{ vars.CICD_SCRIPTS_VERSION }}/${{ vars.SCRIPT_RELATIVE_DIR_PATH}}/sync-bot-status-check.ts";