GitHub API - how to move an issue to a project?
问题 There are several ways to move a Github issue to a Project board through the GitHub user interface, but there doesn't seem to be any way to do this via the API (either v3 or v4). Is this missing functionality? 回答1: You can: create a project card: POST /projects/columns/:column_id/cards move a project card: POST /projects/columns/cards/:card_id/moves That is: The first one allows you to associate an issue to a project card, content_id : The issue or pull request id you want to associate with