blob: 63c446659bb436624f3b737d86d5543d8e041f01 [file] [log] [blame]
Zelalem917b43e2020-08-04 11:39:55 -05001#!/bin/bash
2#
3# Copyright (c) 2020, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8# Install PyGitHub if needed
9python3 -c "import github"
10if [ $? != 0 ]
11then
12 yes | pip3 install pygithub
13fi
14
15# Run bot
16python3 $(dirname "${BASH_SOURCE[0]}")/github_pr_bot.py $@