remove multi-module check

This commit is contained in:
natasha41575
2021-12-13 17:02:58 -08:00
parent c0b61b9442
commit 26999664e6
6 changed files with 0 additions and 630 deletions

View File

@@ -1,23 +0,0 @@
#!/usr/bin/env bash
set -e
if [[ "$PULL_NUMBER" -ne "" ]]; then
cmd="$MYGOBIN/prchecker
-owner=$REPO_OWNER
-repo=$REPO_NAME
-pr=$PULL_NUMBER
$MODULES"
echo $MYGOBIN
echo $REPO_OWNER
echo $REPO_NAME
echo $PULL_NUMBER
echo $MODULES
eval $cmd
else
echo "Multi-module check skipped. No PULL_NUMBER provided.
To run this check locally set PULL_NUMBER to the PR ID from GitHub."
fi