We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 434c443 commit 136b4ccCopy full SHA for 136b4cc
entrypoint.sh
@@ -8,6 +8,12 @@ if [[ -z "$GITHUB_TOKEN" ]]; then
8
exit 1
9
fi
10
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
+
17
# skip if not a PR
18
echo "Checking if a PR command..."
19
(jq -r ".pull_request.url" "$GITHUB_EVENT_PATH") || exit 78
@@ -36,7 +42,7 @@ labels=$(jq ".labels" <<< "$RESPONSE")
36
42
#Block if suspect words are found.
37
43
#Todo - words to be provided as action input.
38
44
checkForBlockingWords(){
39
- if echo "${1} ${2}" | grep -iE 'WIP|do not merge|backend not live'
45
+ if echo "${1} ${2}" | grep -iE "$BLOCK_LIST"
40
46
then
41
47
return 1
48
else
0 commit comments