Last active
March 24, 2022 09:28
-
-
Save victorlin/8ce4fe5f7e9ab6c2aa6210f373a7857d to your computer and use it in GitHub Desktop.
Helper functions to add all issues of a repository to a GitHub project (beta), with example usage at bottom of script. For https://github.com/github/feedback/discussions/6765
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
GH_GRAPHQL_URL = 'https://api.github.com/graphql' | |
TOKEN = '' # add your PAT with read:org and write:org scope | |
def get_json_result(query): | |
headers={'Authorization': f'token {TOKEN}'} | |
r = requests.post(GH_GRAPHQL_URL, json={'query': query}, headers=headers) | |
if r.status_code != 200: | |
raise Exception() | |
return json.loads(r.text) | |
def add_issue_to_project(issue_id, project_id): | |
mutation = f"""mutation {{ | |
addProjectNextItem(input: {{projectId: "{project_id}" contentId: "{issue_id}"}}) {{ | |
projectNextItem {{ | |
id | |
}} | |
}} | |
}} | |
""" | |
return get_json_result(mutation) | |
def get_project_id(org_name, project_number): | |
query = f"""query {{ | |
organization(login: "{org_name}") {{ | |
projectNext(number: {project_number}) {{ | |
id | |
}} | |
}} | |
}} | |
""" | |
result = get_json_result(query) | |
return result['data']['organization']['projectNext']['id'] | |
def get_issue_ids(repo_name, owner_name, n=20): | |
query = f"""query {{ | |
repository(owner: "{owner_name}", name: "{repo_name}") {{ | |
openIssues: issues(first: {n}) {{ | |
edges {{ | |
node {{ | |
number | |
id | |
}} | |
}} | |
}} | |
}} | |
}} | |
""" | |
result = get_json_result(query) | |
return [item['node']['id'] for item in result['data']['repository']['openIssues']['edges']] | |
# example: add 30 issues from serratus-bio/serratus.io to serratus-bio/projects/2. | |
project_id = get_project_id(org_name="serratus-bio", project_number=2) | |
issue_ids = get_issue_ids(repo_name="serratus.io", owner_name="serratus-bio", n=30) | |
for issue_id in issue_ids: | |
add_issue_to_project(issue_id, project_id) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok, to get pagination working, you need to add the
cursor
field to the query for issues, then read the value ofcursor
for the last returned issue, and set this to theafter
parameter of theissues
query.