Skip to content

Commit e032e02

Browse files
blocking on title wip occurence
printing labels to debug and scan
1 parent 28bbd8c commit e032e02

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

entrypoint.sh

+11-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ set -e
44

55
# skip if not a PR
66
echo "Checking if a PR command..."
7-
(jq .)
8-
echo $GITHUB_EVENT_PATH
97
(jq -r ".pull_request.url" "$GITHUB_EVENT_PATH") || exit 78
108

9+
#printing labels
10+
(jq -r ".pull_request.labels" "$GITHUB_EVENT_PATH")
11+
1112
# Block if wip found in title
12-
echo "Checking if contains WIP ..."
13-
(jq .)
14-
(jq -r ".pull_request.title" "$GITHUB_EVENT_PATH" | grep -E "wip") exit 1 && exit 0
13+
echo "Checking wip mentions in title ..."
14+
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

Comments
 (0)