MCPcopy Index your code
hub / github.com/git-bug/git-bug / updateGithubIssueTitle

Method updateGithubIssueTitle

bridge/github/export.go:732–744  ·  view source on GitHub ↗
(ctx context.Context, gc *rateLimitHandlerClient, id, title string)

Source from the content-addressed store, hash-verified

730}
731
732func (ge *githubExporter) updateGithubIssueTitle(ctx context.Context, gc *rateLimitHandlerClient, id, title string) error {
733 m := &updateIssueMutation{}
734 input := githubv4.UpdateIssueInput{
735 ID: id,
736 Title: (*githubv4.String)(&title),
737 }
738
739 if err := gc.mutate(ctx, m, input, nil, ge.out); err != nil {
740 return err
741 }
742
743 return nil
744}
745
746// update github issue labels
747func (ge *githubExporter) updateGithubIssueLabels(ctx context.Context, gc *rateLimitHandlerClient, labelableID string, added, removed []common.Label) error {

Callers 1

exportBugMethod · 0.95

Calls 1

mutateMethod · 0.80

Tested by

no test coverage detected