Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FetchReviewMeetingMinutesOptions ¶
FetchReviewMeetingMinutesOptions defines parameters for fetching proposal review meeting minutes.
func (*FetchReviewMeetingMinutesOptions) IsLimitReached ¶
func (opts *FetchReviewMeetingMinutesOptions) IsLimitReached(n int) bool
IsLimitReached returns true if the given number n meets or exceeds the defined limit.
type ReviewMeetingMinute ¶
type ReviewMeetingMinute struct { Body string `json:"body"` Created time.Time `json:"created,omitzero"` Updated time.Time `json:"updated,omitzero"` }
ReviewMeetingMinute represents a single proposal review meeting minute.
func FetchReviewMeetingMinutes ¶
func FetchReviewMeetingMinutes(ctx context.Context, opts *FetchReviewMeetingMinutesOptions) ([]*ReviewMeetingMinute, error)
FetchReviewMeetingMinutes fetches proposal review meeting minutes from the golang/go issue tracker.
It retrieves comments from issue #33502, which is used to record minutes of proposal review meetings. The results are limited by the provided options.
Click to show internal directories.
Click to hide internal directories.