From 5dde4c2fff1c6c62d94c7efcaf4640bbde04f0f5 Mon Sep 17 00:00:00 2001 From: Mathieu Veber <43341681+MathieuVeber@users.noreply.github.com> Date: Fri, 26 Jul 2024 16:15:48 +0200 Subject: [PATCH] fix!: delete bulk deploy please flow (it never worked anyway) (#80) --- .github/workflows/bulk-deploy-please.yml | 41 ------------------------ 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/bulk-deploy-please.yml diff --git a/.github/workflows/bulk-deploy-please.yml b/.github/workflows/bulk-deploy-please.yml deleted file mode 100644 index 407568f..0000000 --- a/.github/workflows/bulk-deploy-please.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Bulk Deploy Please - -on: - workflow_dispatch: - inputs: - topic: - type: choice - description: Target repositories with topic - required: true - default: service - options: - - app - - backend - - io - - org - - platform - - service - - test - -jobs: - bulk-deploy-please: - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: Bulk Deploy Please - run: | - urls=$(gh repo list hedia-team --limit 1000 --topic=${{ inputs.topic }} --no-archived --json=url --jq=".[] | .url") - - echo "Running Deploy Please for the following repos:" - - for url in $urls - do - echo "* $url" - gh workflow run --repo $url deploy-please.yml || true - done - - echo " " - echo "Great job! Remember to check each deployment status on Scalingo." - echo "https://dashboard.scalingo.com/apps" - env: - GH_TOKEN: ${{ secrets.HEDIA_BOT_GITHUB_PAT }}