Skip to content

Commit a1f6f1b

Browse files
Now calls PR API
Always work with latest information. Also, we are now dependent on the token, to be provided as action input.
1 parent a0a595f commit a1f6f1b

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

entrypoint.sh

+28-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,39 @@
22

33
set -e
44

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+
511
# skip if not a PR
612
echo "Checking if a PR command..."
713
(jq -r ".pull_request.url" "$GITHUB_EVENT_PATH") || exit 78
814

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")
1135

36+
#Block if suspect words are found.
37+
#Todo - words to be provided as action input.
1238
checkForBlockingWords(){
1339
if echo "${1} ${2}" | grep -iE 'WIP|do not merge|backend not live'
1440
then

0 commit comments

Comments
 (0)