forked from apigee/devrel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-api.sh
executable file
·80 lines (69 loc) · 2.33 KB
/
github-api.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/sh
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
buildresult=$(cat)
REPORT_ROWS=$(echo "$buildresult" | awk -F";" '$0="|"$1"|"$2"|"$3"|"' OFS="|")
REPORT=$(cat <<EOF
### Pipeline Report
|Pipeline |Result |Elapsed Wall Time |
|---------|-------|------------------|
$REPORT_ROWS
[View details in Cloud Build (permission required)](https://console.cloud.google.com/cloud-build/builds/$BUILD_ID?project=$PROJECT_ID)
Commit version: $SHORT_SHA
EOF
)
REPO_API="https://api.github.com/repos/$REPO_GH_ISSUE"
createIssueComment() {
COMMENTS_URL=$1
REPORT=$2
curl \
-X POST \
-u "$GH_BOT_NAME:$GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"$COMMENTS_URL" \
-d "{\"body\":$(echo "$REPORT" | jq -sR)}"
}
previousIssueComments() {
curl \
-X GET \
-u "$GH_BOT_NAME:$GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"$REPO_API/issues?state=open&creator=$GH_BOT_NAME" | jq -r '.[] | select(.title == "Nightly build failure") | .comments_url'
}
createIssue() {
TITLE=$1
REPORT=$2
curl \
-X POST \
-u "$GH_BOT_NAME:$GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"$REPO_API/issues$ISSUE_COMMENTS" \
-d "{\"title\":\"$TITLE\",\"body\":$(echo "$REPORT" | jq -sR)}"
}
if [ -n "$PR_NUMBER" ]; then
# Always comment on PR builds
createIssueComment "$REPO_API/issues/$PR_NUMBER/comments" "$REPORT"
elif echo "$buildresult" | grep -q "fail" && [ "$CREATE_GH_ISSUE" = "true" ]; then
PREVIOUS_ISSUE_COMMENTS=$(previousIssueComments)
if [ -n "$PREVIOUS_ISSUE_COMMENTS" ]; then
# There is already an issue for a failing build
createIssueComment "$PREVIOUS_ISSUE_COMMENTS" "$REPORT"
else
# Create a new issue
createIssue "Nightly build failure" "$REPORT"
fi
else
echo "[INFO] No issue created"
echo "$buildresult"
fi