From 4b02eeed80f09548427b0ea901f69a3c95be4072 Mon Sep 17 00:00:00 2001 From: Eric Hayes Date: Wed, 28 Aug 2024 21:44:38 -0700 Subject: [PATCH] fix: added topics to RepositoryPayload --- github/payload.go | 1 + 1 file changed, 1 insertion(+) diff --git a/github/payload.go b/github/payload.go index 2f1cc84..83e78bf 100644 --- a/github/payload.go +++ b/github/payload.go @@ -5758,6 +5758,7 @@ type RepositoryPayload struct { OpenIssues int64 `json:"open_issues"` Watchers int64 `json:"watchers"` DefaultBranch string `json:"default_branch"` + Topics []string `json:"topics"` } `json:"repository"` Organization struct { Login string `json:"login"`