File tree 1 file changed +28
-2
lines changed
1 file changed +28
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
+ # Making sure we have the token
6
+ if [[ -z " $GITHUB_TOKEN " ]]; then
7
+ echo " Set the GITHUB_TOKEN env variable."
8
+ exit 1
9
+ fi
10
+
5
11
# skip if not a PR
6
12
echo " Checking if a PR command..."
7
13
(jq -r " .pull_request.url" " $GITHUB_EVENT_PATH " ) || exit 78
8
14
9
- title=$( jq -r " .pull_request.title" " $GITHUB_EVENT_PATH " )
10
- labels=$( jq -r " .pull_request.labels" " $GITHUB_EVENT_PATH " )
15
+ # Setting Required Headers
16
+ API_HEADER=" Accept: application/vnd.github.v3+json; application/vnd.github.antiope-preview+json"
17
+ AUTH_HEADER=" Authorization: token ${GITHUB_TOKEN} "
18
+
19
+ # Extracting pull request number
20
+ number=$( jq -r " .pull_request.number" " $GITHUB_EVENT_PATH " )
21
+
22
+ # Calling the PR API to fetch latest info
23
+ # If the action had intially failed due to addition of a label or editing the title, it should pass if manually re-triggered
24
+ # later on, so we need to always work on the latest information.
25
+ RESPONSE=$( curl -s \
26
+ -H " Content-Type: application/json" \
27
+ -H " ${AUTH_HEADER} " \
28
+ -H " ${API_HEADER} " \
29
+ " https://api.github.com/repos/${GITHUB_REPOSITORY} /pulls/${number} " )
30
+
31
+
32
+ # Extracting Title & Lables
33
+ title=$( jq " .title" <<< " $RESPONSE" )
34
+ labels=$( jq " .labels" <<< " $RESPONSE" )
11
35
36
+ # Block if suspect words are found.
37
+ # Todo - words to be provided as action input.
12
38
checkForBlockingWords (){
13
39
if echo " ${1} ${2} " | grep -iE ' WIP|do not merge|backend not live'
14
40
then
You can’t perform that action at this time.
0 commit comments