blob: fec34d2631fbfce444d8c650cf63f26472db160f [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Zelalem917b43e2020-08-04 11:39:55 -05002#
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 $@