We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f812e2c commit 3948c0bCopy full SHA for 3948c0b
entrypoint.sh
@@ -5,9 +5,10 @@ set -e
5
# skip if not a PR
6
echo "Checking if a PR command..."
7
(jq .)
8
+echo $GITHUB_EVENT_PATH
9
(jq -r ".pull_request.url" "$GITHUB_EVENT_PATH") || exit 78
10
-# skip if no /revert
11
-echo "Checking if contains '/revert' command..."
+# Block if wip found in title
12
+echo "Checking if contains WIP ..."
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