-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.go
103 lines (86 loc) · 2.79 KB
/
main.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright 2020 Jim Schubert
//
// 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.
package main
import (
"encoding/json"
"io/ioutil"
"os"
"regexp"
"strings"
"github.com/google/go-github/v29/github"
"github.com/jimschubert/labeler"
act "github.com/sethvargo/go-githubactions"
log "github.com/sirupsen/logrus"
)
func main() {
eventName := os.Getenv("GITHUB_EVENT_NAME")
githubToken := act.GetInput("GITHUB_TOKEN")
if githubToken == "" {
var ok bool
// allow for local testing
githubToken, ok = os.LookupEnv("GITHUB_TOKEN")
if !ok {
log.Fatal("Missing input 'GITHUB_TOKEN' in labeler action configuration.")
}
}
// github actions will pass input GITHUB_TOKEN as env INPUT_GITHUB_TOKEN, so set this back to GITHUB_TOKEN for the lib.
_ = os.Setenv("GITHUB_TOKEN", githubToken)
_ = os.Setenv("LOG_LEVEL", "info")
event, err := ioutil.ReadFile(os.Getenv("GITHUB_EVENT_PATH"))
if err != nil {
log.Fatalf("Can't read events: %s", err)
}
re := regexp.MustCompile(`\r?\n\s*`)
event = re.ReplaceAll(event, []byte(""))
var id int
switch eventName {
case "issues":
var issue github.IssuesEvent
err = json.Unmarshal(event, &issue)
if err != nil {
log.Fatalf("Can't unmarshal json: %s", err)
}
id = (*issue.Issue).GetNumber()
case "pull_request", "pull_request_target":
var pr *github.PullRequestEvent
err = json.Unmarshal(event, &pr)
if err != nil {
log.Fatalf("Can't unmarshal json: %s", err)
}
id = (*pr.PullRequest).GetNumber()
}
data := string(event)
log.WithFields(log.Fields{"data": data, "type": eventName}).Debug("Processing event")
var owner string
// GITHUB_REPOSITORY_OWNER is only recently introduced in the runner
// see https://github.com/actions/runner/pull/378
// GITHUB_REPOSITORY_OWNER would be used by forks
// GITHUB_ACTOR would be used by sources where GITHUB_REPOSITORY_OWNER may not exist
owner = os.Getenv("GITHUB_REPOSITORY_OWNER")
if owner == "" {
owner = os.Getenv("GITHUB_ACTOR")
}
repo := os.Getenv("GITHUB_REPOSITORY")
repoParts := strings.Split(repo, "/")
repo = repoParts[len(repoParts)-1]
l, err := labeler.New(owner, repo, eventName, id, &data)
if err != nil {
log.Fatalf("Could not construct a labeler %s", err)
}
err = l.Execute()
if err != nil {
log.Fatalf("Failed to execute %v", err)
}
log.Info("Done labeling.")
}