How can I see all the issues I'm watching on Github?

后端 未结 5 979
无人及你
无人及你 2021-01-29 18:46

Github has a great feature where you can \"watch\" an issue. This is handy for getting notifications about progress on that issue.

However, sometimes you want to find th

5条回答
  •  心在旅途
    2021-01-29 19:20

    Seems you can fetch this information via Github API

    https://developer.github.com/v3/issues/#parameters

    GET /orgs/:org/issues

    Parameters
    Name    Type    Description
    filter  string  Indicates which sorts of issues to return. Can be one of:
    * assigned: Issues assigned to you
    * created: Issues created by you
    * mentioned: Issues mentioning you
    * subscribed: Issues you're subscribed to updates for
    * all: All issues the authenticated user can see, regardless of participation or creation
    Default: assigned
    

提交回复
热议问题