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)
52
+
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)
@@ -87,7 +106,7 @@ func writeCuration(issues []*github.Issue, pullRequests []*github.PullRequest, c
87
106
iferr!=nil {
88
107
returnerr
89
108
}
90
-
result:=fmt.Sprintf("# Curation 📚\n\n## New issues\nThere is **%d new issues** in gnolang/awesome-gno since %s\n\n%s", len(issues), opts.since, issuesTable)
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)
91
110
92
111
varpullRequestRows [][]string
93
112
for_, pr:=rangepullRequests {
@@ -99,7 +118,7 @@ func writeCuration(issues []*github.Issue, pullRequests []*github.PullRequest, c
99
118
iferr!=nil {
100
119
returnerr
101
120
}
102
-
result+=fmt.Sprintf("\n\n## New PR\nThere is **%d new PR** in gnolang/awesome-gno since %s\n\n%s", len(pullRequests), opts.since, pullRequestsTable)
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)
103
122
104
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)
105
124
@@ -110,6 +129,7 @@ func writeCuration(issues []*github.Issue, pullRequests []*github.PullRequest, c
0 commit comments