We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28bbd8c commit e032e02Copy full SHA for e032e02
entrypoint.sh
@@ -4,11 +4,17 @@ set -e
4
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
+#printing labels
+(jq -r ".pull_request.labels" "$GITHUB_EVENT_PATH")
11
+
12
# Block if wip found in title
-echo "Checking if contains WIP ..."
13
14
-(jq -r ".pull_request.title" "$GITHUB_EVENT_PATH" | grep -E "wip") exit 1 && exit 0
+echo "Checking wip mentions in title ..."
+result=$(jq -r ".pull_request.title" "$GITHUB_EVENT_PATH")
15
+if [[ $result =~ "wip" ]]
16
+then
17
+ exit 1
18
+else
19
+ exit 0
20
+fi
0 commit comments