We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to modify JSON generator script to get data from GitHub, which is triggered periodically using a cronjob.
The following is a proposed JSON format based on the current API:
{ "recent": { "data": [{ "title": "items->{}->title", "status": "open", "link": "items->{}->url" }, { "title": "items->{}->title", "status": "open", "link": "items->{}->url" } ] }, "in-progress": { "data": [{ "title": "items->{}->title", "status": "needs-pr", "link": "items->{}->url" }, { "title": "items->{}->title", "status": "has-pr", "link": "items->{}->url" } ] }, "help-wanted": { "data": [{ "title": "items->{}->title", "status": "open", "link": "items->{}->url" }, { "title": "items->{}->title", "status": "open", "link": "items->{}->url" } ] }, "link": "https://github.com/ClassicPress/ClassicPress/issues?q=is%3Aopen+is%3Aissue+label%3A%22type%3A+feature+request%22" }
We have 3 categories: recent, in-progress, and help wanted
Pull the most recent 10 open issues using the label "type: feature request" and the following statuses:
When passing status label to the JSON file, please remove "status: ".
https://api.github.com/search/issues?q=is%3Aissue+is%3Aopen+label%3A%22type%3A+feature+request%22+repo:classicpress/classicpress
Pull open issues labeled "type: feature request" and the following statuses:
Pull the latest 10 open issues with label "help wanted". When passing status label to the JSON file, please remove "status: ".
https://api.github.com/search/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+repo:classicpress/classicpress
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We need to modify JSON generator script to get data from GitHub, which is triggered periodically using a cronjob.
The following is a proposed JSON format based on the current API:
Categorization
We have 3 categories: recent, in-progress, and help wanted
recent
Pull the most recent 10 open issues using the label "type: feature request" and the following statuses:
When passing status label to the JSON file, please remove "status: ".
https://api.github.com/search/issues?q=is%3Aissue+is%3Aopen+label%3A%22type%3A+feature+request%22+repo:classicpress/classicpress
in progress
Pull open issues labeled "type: feature request" and the following statuses:
When passing status label to the JSON file, please remove "status: ".
https://api.github.com/search/issues?q=is%3Aissue+is%3Aopen+label%3A%22type%3A+feature+request%22+repo:classicpress/classicpress
help wanted
Pull the latest 10 open issues with label "help wanted".
When passing status label to the JSON file, please remove "status: ".
https://api.github.com/search/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+repo:classicpress/classicpress
The text was updated successfully, but these errors were encountered: