-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.go
98 lines (75 loc) · 2.09 KB
/
template.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
package main
import (
_ "embed"
"encoding/json"
"fmt"
"os"
"github.com/cbroglie/mustache"
"github.com/google/go-github/v60/github"
)
//go:embed git-pr-release.mustache
var defaultTemplate string
func readTemplate(filename *string) (string, error) {
if filename == nil || *filename == "" {
return defaultTemplate, nil
}
data, err := os.ReadFile(*filename)
if err != nil {
return "", err
}
return string(data), nil
}
type RenderTemplateData struct {
PullRequests []github.PullRequest `json:"pull_requests"`
Commits []github.RepositoryCommit `json:"commits"`
Date string `json:"date"`
From string `json:"from"`
To string `json:"to"`
CustomParameters any `json:"custom_parameters"`
}
func convertJson(data RenderTemplateData) (any, error) {
var jsonData any
jsonByte, err := json.Marshal(data)
json.Unmarshal(jsonByte, &jsonData)
if err != nil {
return nil, err
}
return jsonData, nil
}
func getRunUrl() string {
serverUrl := os.Getenv("GITHUB_SERVER_URL")
repo := os.Getenv("GITHUB_REPOSITORY")
runId := os.Getenv("GITHUB_RUN_ID")
runAttempt := os.Getenv("GITHUB_RUN_ATTEMPT")
if serverUrl != "" && repo != "" && runId != "" && runAttempt != "" {
return serverUrl + "/" + repo + "/actions/runs/" + runId + "/attempts/" + runAttempt
}
return ""
}
func RenderTemplate(filename *string, data RenderTemplateData, disableGeneratedByMessage bool) (string, error) {
template, err := readTemplate(filename)
if err != nil {
return "", err
}
jsonData, err := convertJson(data)
if err != nil {
return "", err
}
text, err := mustache.Render(template, jsonData)
if err != nil {
return "", err
}
if !disableGeneratedByMessage {
withinText := ""
runUrl := getRunUrl()
if runUrl != "" {
withinText = " within [GitHub Actions workflow](" + runUrl + ")"
}
footer := `
---
*Automatically generated by [git-pr-release-go](https://github.com/odanado/git-pr-release-go)%s.*
`
text += fmt.Sprintf(footer, withinText)
}
return text, nil
}