From b6d873db1b11e1874e64b12799351822b86a1a3c Mon Sep 17 00:00:00 2001 From: Mathias Mogensen <42929161+Xazin@users.noreply.github.com> Date: Mon, 10 Jun 2024 03:04:28 +0200 Subject: [PATCH] chore: remove build bot (#5500) --- .github/workflows/build_bot.yaml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/build_bot.yaml diff --git a/.github/workflows/build_bot.yaml b/.github/workflows/build_bot.yaml deleted file mode 100644 index 65854b94d1..0000000000 --- a/.github/workflows/build_bot.yaml +++ /dev/null @@ -1,28 +0,0 @@ -name: Build Bot - -on: - issue_comment: - types: [created] - -jobs: - dispatch_slash_command: - runs-on: ubuntu-latest - steps: - - name: Checkout source code - uses: actions/checkout@v4 - - # get build name from pubspec.yaml - - name: Get build version - working-directory: frontend/appflowy_flutter - id: get_build_name - run: | - echo "fetching version from pubspec.yaml..." - echo "build_name=$(grep 'version: ' pubspec.yaml | awk '{print $2}')" >> $GITHUB_OUTPUT - - - uses: peter-evans/slash-command-dispatch@v4 - with: - token: ${{ secrets.PAT }} - commands: build - static-args: | - ref=refs/pull/${{ github.event.issue.number }}/head - build_name=${{ steps.get_build_name.outputs.build_name }}