Skip to content

Commit 136b4cc

Browse files
Now supports list of blocked words
1 parent 434c443 commit 136b4cc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

entrypoint.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ if [[ -z "$GITHUB_TOKEN" ]]; then
88
exit 1
99
fi
1010

11+
#Making sure we have the block list
12+
if [[ -z "$BLOCK_LIST" ]]; then
13+
echo "Set the GITHUB_TOKEN env variable."
14+
exit 1
15+
fi
16+
1117
# skip if not a PR
1218
echo "Checking if a PR command..."
1319
(jq -r ".pull_request.url" "$GITHUB_EVENT_PATH") || exit 78
@@ -36,7 +42,7 @@ labels=$(jq ".labels" <<< "$RESPONSE")
3642
#Block if suspect words are found.
3743
#Todo - words to be provided as action input.
3844
checkForBlockingWords(){
39-
if echo "${1} ${2}" | grep -iE 'WIP|do not merge|backend not live'
45+
if echo "${1} ${2}" | grep -iE "$BLOCK_LIST"
4046
then
4147
return 1
4248
else

0 commit comments

Comments
 (0)