github-issue-counter
github-issue-counter copied to clipboard
A script to get the count of open/closed issues/PRs on GitHub on a per day basis.
An example GraphQL query that gathers most required information is ```graphql { repository(owner: "owncloud", name: "core") { issues(first: 100) { nodes { createdAt number timelineItems(itemTypes: [CLOSED_EVENT, REOPENED_EVENT], first: 10) {...
Hi, I'm trying out your script and I get this error when I try to import issues: ``` /var/www/github-issue-counter $ ./import_issues.py Traceback (most recent call last): File "./import_issues.py", line 24,...
How to reproduce: 1. Clone the repo on macOS (v 10.13.6). 2. Try to run process_issues.py 3. This is the output: ``` ./process_issues.py Traceback (most recent call last): File "./process_issues.py",...