Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Mar 10, 2020
1 parent 2270a35 commit 1b0b15d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 23 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/comment_bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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: |
Expand Down
7 changes: 2 additions & 5 deletions dev/archery/archery/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 1b0b15d

Please sign in to comment.