From 1b0b15d5a1fd9b81b37446b82222e7e63d6add6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kriszti=C3=A1n=20Sz=C5=B1cs?= Date: Tue, 10 Mar 2020 15:01:53 +0100 Subject: [PATCH] cleanup --- .github/workflows/comment_bot.yml | 19 +------------------ dev/archery/archery/bot.py | 7 ++----- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/.github/workflows/comment_bot.yml b/.github/workflows/comment_bot.yml index 861943b3a5195..9388c9f45316d 100644 --- a/.github/workflows/comment_bot.yml +++ b/.github/workflows/comment_bot.yml @@ -18,15 +18,10 @@ name: Comment Bot on: + # TODO(kszucs): support pull_request_review_comment issue_comment: types: - created - - deleted - - edited - pull_request_review_comment: - types: - - created - - deleted - edited jobs: @@ -35,16 +30,6 @@ jobs: name: Debug runs-on: ubuntu-latest steps: - - name: Event Name - shell: bash - run: echo "${{ github.event_name }} " - - name: Event Path - shell: bash - run: echo "${{ github.event_path }} " - - name: Event Payload - shell: bash - run: cat ${{ github.event_path }} - - name: Checkout Arrow uses: actions/checkout@v2 with: @@ -54,8 +39,6 @@ jobs: update-conda: true python-version: 3.7 conda-channels: conda-forge - - run: conda --version - - run: which python - run: | conda install -y --file arrow/ci/conda_env_crossbow.txt pygithub - run: | diff --git a/dev/archery/archery/bot.py b/dev/archery/archery/bot.py index 5d40674c32957..ea55e213c9522 100644 --- a/dev/archery/archery/bot.py +++ b/dev/archery/archery/bot.py @@ -189,10 +189,7 @@ def submit(obj, task, group, dry_run): args.append(t) git = Git() - xbow = Crossbow('arrow/dev/tasks/crossbow.py') - - # arrow is already cloned ideally but of course we should be able to choose - # a different fork - # git.clone(obj['arrow_repo'], 'arrow') git.clone(obj['crossbow_repo'], 'crossbow') + + xbow = Crossbow('arrow/dev/tasks/crossbow.py') xbow.run('submit', *args) \ No newline at end of file