/.github/{scripts,workflows}: iterating on pr comment benchmarking

This commit is contained in:
Dustin Brown
2020-12-31 13:26:05 -08:00
parent 269a4c7847
commit 15cbcb7ef8
3 changed files with 90 additions and 11 deletions
@@ -0,0 +1,16 @@
#!/bin/bash
set -e
if [[ $# -ne 1 ]]; then
echo "Usage: ./validate-commentor.sh COMMENTOR"
exit 1
fi
validcommentors="coffeegoddd andrew-wm-arthur bheni Hydrocharged katiemcculloch oscarbatori reltuk tbantle22 timsehn VinaiRachakonda zachmu"
contains() {
[[ $1 =~ (^|[[:space:]])$2($|[[:space:]]) ]] && echo "::set-output name=valid::true" || exit 0
}
contains "$validcommentors" "$1"