diff --git a/.github/workflows/run-bot-update-maps.yml b/.github/workflows/run-bot-update-maps.yml deleted file mode 100644 index a2eb9bb5f96..00000000000 --- a/.github/workflows/run-bot-update-maps.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Run - Update Bot Maps -on: - workflow_dispatch: -jobs: - deploy: - name: Run Bot Update Maps - runs-on: Ubuntu-20.04 - steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Run Ansible to Deploy - run: | - pip install ansible==2.9.13 - cd infrastructure - echo "$ANSIBLE_VAULT_PASSWORD" > vault_password - ./update_bots.sh - env: - ANSIBLE_VAULT_PASSWORD: ${{ secrets.ANSIBLE_VAULT_PASSWORD }} - diff --git a/.github/workflows/run-deploy-production.yml b/.github/workflows/run-deploy-production.yml deleted file mode 100644 index 213f1b470b7..00000000000 --- a/.github/workflows/run-deploy-production.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Deploy Production -on: - workflow_dispatch: -jobs: - deploy: - name: Deploy to Production - runs-on: Ubuntu-20.04 - steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Load SSH private key into ssh-agent - uses: webfactory/ssh-agent@v0.9.0 - with: - ssh-private-key: ${{ secrets.ANSIBLE_SSH_PRIVATE_KEY }} - - name: Run Ansible to Deploy - run: | - pip install ansible==2.9.13 - cd infrastructure - echo "$ANSIBLE_VAULT_PASSWORD" > vault_password - ./run_ansible --environment production - env: - ANSIBLE_VAULT_PASSWORD: ${{ secrets.ANSIBLE_VAULT_PASSWORD }} - diff --git a/http-clients/run/check b/http-clients/run/check deleted file mode 100755 index 9949747f244..00000000000 --- a/http-clients/run/check +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -set -e -scriptDir=$(dirname "$0") -"$scriptDir/../../gradlew" --parallel :http-clients:check -"$scriptDir/../../.build/code-convention-checks/check-custom-style" http-clients