You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result+=fmt.Sprintf("\n\n## New PR\nThere is **%d new closed PR** in gnolang/awesome-gno since %s\n\n%s", len(pullRequests), opts.since, pullRequestsTable)
54
+
result+=fmt.Sprintf("\n\n## New PR\nThere is **%d new closed PR** in %s since %s\n\n%s", len(pullRequests), gnoEmbedURL, opts.since, pullRequestsTable)
52
55
53
-
result+=fmt.Sprintf("\n\n## New commits\nThere is **%d new commits** in gnolang/awesome-gno since %s\n\n", len(commits), opts.since)
56
+
result+=fmt.Sprintf("\n\n## New commits\nThere is **%d new commits** in %s since %s\n\n", len(commits), gnoEmbedURL, opts.since)
54
57
55
58
_, err=outputFile.WriteString(result)
56
59
iferr!=nil {
@@ -72,7 +75,7 @@ func writeBacklog(issues []*github.Issue, pullRequests []*github.PullRequest, ou
72
75
iferr!=nil {
73
76
returnerr
74
77
}
75
-
result:=fmt.Sprintf("# Backlog 💡\n\nThere is **%d new open issues** in gnolang/gno since %s\n\n%s", len(issues), opts.since, markdownTable)
78
+
result:=fmt.Sprintf("# Backlog 💡\n\nThere is **%d new open issues** in %s since %s\n\n%s", len(issues), gnoEmbedURL, opts.since, markdownTable)
76
79
77
80
varpullRequestRows [][]string
78
81
for_, pr:=rangepullRequests {
@@ -84,7 +87,7 @@ func writeBacklog(issues []*github.Issue, pullRequests []*github.PullRequest, ou
84
87
iferr!=nil {
85
88
returnerr
86
89
}
87
-
result+=fmt.Sprintf("\n\n## New PR\nThere is **%d new open PR** in gnolang/gno since %s\n\n%s", len(pullRequests), opts.since, pullRequestsTable)
90
+
result+=fmt.Sprintf("\n\n## New PR\nThere is **%d new open PR** in %s since %s\n\n%s", len(pullRequests), gnoEmbedURL, opts.since, pullRequestsTable)
88
91
89
92
_, err=outputFile.WriteString(result)
90
93
iferr!=nil {
@@ -106,7 +109,7 @@ func writeCuration(issues []*github.Issue, pullRequests []*github.PullRequest, c
106
109
iferr!=nil {
107
110
returnerr
108
111
}
109
-
result:=fmt.Sprintf("# Curation 📚\n\n## New issues\nThere is **%d updated issues** in gnolang/awesome-gno since %s\n\n%s", len(issues), opts.since, issuesTable)
112
+
result:=fmt.Sprintf("# Curation 📚\n\n## New issues\nThere is **%d updated issues** in %s since %s\n\n%s", len(issues), awesomeGnoEmbedURL, opts.since, issuesTable)
110
113
111
114
varpullRequestRows [][]string
112
115
for_, pr:=rangepullRequests {
@@ -118,9 +121,9 @@ func writeCuration(issues []*github.Issue, pullRequests []*github.PullRequest, c
118
121
iferr!=nil {
119
122
returnerr
120
123
}
121
-
result+=fmt.Sprintf("\n\n## New PR\nThere is **%d updated PR** in gnolang/awesome-gno since %s\n\n%s", len(pullRequests), opts.since, pullRequestsTable)
124
+
result+=fmt.Sprintf("\n\n## New PR\nThere is **%d updated PR** in %s since %s\n\n%s", len(pullRequests), awesomeGnoEmbedURL, opts.since, pullRequestsTable)
122
125
123
-
result+=fmt.Sprintf("\n\n## New commits\nThere is **%d new commits** in gnolang/awesome-gno since %s\n\n", len(commits), opts.since)
126
+
result+=fmt.Sprintf("\n\n## New commits\nThere is **%d new commits** in %s since %s\n\n", len(commits), awesomeGnoEmbedURL, opts.since)
0 commit comments