-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
GitHub Developer API announcement:
https://developer.github.com/changes/2020-02-26-new-delete-reactions-endpoints/
These new endpoints need to be supported:
- Delete a commit comment reaction- Add support to delete commit comment reaction #1445
DELETE /repos/:owner/:repo/comments/:comment_id/reactions/:reaction_id
- Docs: https://developer.github.com/v3/reactions/#delete-a-commit-comment-reaction
- Delete an issue reaction
DELETE /repos/:owner/:repo/issues/:issue_number/reactions/:reaction_id
- Docs: https://developer.github.com/v3/reactions/#delete-an-issue-reaction
- Delete a reaction to a commit comment
DELETE /repos/:owner/:repo/issues/comments/:comment_id/reactions/:reaction_id
- https://developer.github.com/v3/reactions/#delete-an-issue-comment-reaction
- Delete a pull request comment reaction
DELETE /repos/:owner/:repo/pulls/comments/:comment_id/reactions/:reaction_id
- https://developer.github.com/v3/reactions/#delete-a-pull-request-comment-reaction
- Delete team discussion reaction
DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number/reactions/:reaction_id
- Docs: https://developer.github.com/v3/reactions/#delete-team-discussion-reaction
- Delete team discussion comment reaction
DELETE /orgs/:org/teams/:team_slug/discussions/:discussion_number/comments/:comment_number/reactions/:reaction_id
- Docs: https://developer.github.com/v3/reactions/#delete-team-discussion-comment-reaction
This would be a great PR for any new contributor to this repo or a new Go developer.
All contributions are greatly appreciated!
Feel free to volunteer for any issue and the issue can be assigned to you so that others don't attempt to duplicate the work.
Please check out our CONTRIBUTING.md guide to get started.
Thank you!