-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrunner.go
More file actions
68 lines (59 loc) · 1.08 KB
/
runner.go
File metadata and controls
68 lines (59 loc) · 1.08 KB
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
package main
import (
"context"
"log"
)
type Runner struct {
Config Config
Fetcher Fetcher
}
func NewRunner(c Config) *Runner {
ctx := context.Background()
f := &fetcher{
Repo: c.Repo,
Token: c.Token,
}
f.Auth(ctx)
r := &Runner{
Config: c,
Fetcher: f,
}
return r
}
func (r *Runner) Run(isDryRun bool) error {
rel := &Release{
Fetcher: r.Fetcher,
Config: r.Config,
}
ctx := context.Background()
bpr, err := rel.Build(ctx)
if err != nil {
return err
}
number, isOpened, err := r.Fetcher.OpenedReleasePRNumber(ctx)
if err != nil {
return err
}
if isOpened {
log.Println("[DEBUG] update pull request")
} else {
log.Println("[DEBUG] create pull request")
}
log.Printf("[DEBUG] title=%s", bpr.Title)
log.Printf("[DEBUG] %s", bpr.Body)
if isDryRun {
return nil
}
if isOpened {
_, err := r.Fetcher.UpdatePullRequest(ctx, bpr.Title, bpr.Body, number, r.Config.Labels)
if err != nil {
return err
}
} else {
_, err := r.Fetcher.CreatePullRequest(ctx, bpr.Title, bpr.Body, r.Config.Labels)
if err != nil {
return err
}
}
return nil
}