Skip to content

Commit 3948c0b

Browse files
Updating block rules
1 parent f812e2c commit 3948c0b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

entrypoint.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ set -e
55
# skip if not a PR
66
echo "Checking if a PR command..."
77
(jq .)
8+
echo $GITHUB_EVENT_PATH
89
(jq -r ".pull_request.url" "$GITHUB_EVENT_PATH") || exit 78
910

10-
# skip if no /revert
11-
echo "Checking if contains '/revert' command..."
11+
# Block if wip found in title
12+
echo "Checking if contains WIP ..."
1213
(jq .)
13-
(jq -r ".pull_request.title" "$GITHUB_EVENT_PATH" | grep -E "wip") || exit 78
14+
(jq -r ".pull_request.title" "$GITHUB_EVENT_PATH" | grep -E "wip") && exit 78

0 commit comments

Comments
 (0)