forked from DataDog/dd-trace-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkmilestone.go
55 lines (51 loc) · 1.13 KB
/
checkmilestone.go
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
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016 Datadog, Inc.
// +build ignore
// This tool validates that the PR at the given URL has a milestone set.
package main
import (
"encoding/json"
"errors"
"fmt"
"net/http"
"net/url"
"os"
"path"
"strconv"
)
func main() {
prURL, ok := os.LookupEnv("CIRCLE_PULL_REQUEST")
if !ok {
fmt.Println("CIRCLE_PULL_REQUEST not set")
os.Exit(0)
}
exit := func(err error) {
fmt.Println(err)
os.Exit(1)
}
u, err := url.Parse(prURL)
if err != nil {
exit(err)
}
base := path.Base(u.Path)
pr, err := strconv.Atoi(base)
if err != nil {
exit(err)
}
resp, err := http.Get(fmt.Sprintf("https://api.github.com/repos/DataDog/dd-trace-go/issues/%d", pr))
if err != nil {
exit(err)
}
var data struct {
Milestone interface{} `json:"milestone"`
}
if err := json.NewDecoder(resp.Body).Decode(&data); err != nil {
exit(err)
}
resp.Body.Close()
if data.Milestone == nil {
exit(errors.New("Milestone not set."))
}
}