Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I search GitHub issues "created in the last seven days"?

Tags:

github

We'd like to list all GitHub issues created in the last seven (or, n) days. This is a relative time window.

We don't want to use a specific date, because we'd like to create a link that is always correct (so we can link to the report of recent issues).

Thanks!

like image 278
Seth Ladd Avatar asked Aug 02 '16 20:08

Seth Ladd


People also ask

Does Github have search history?

You can search your browser history for GitHub URL you visited. This helps you to find and open GitHub repository, issues, pull requests, or etc. Just type "git" and press tab key in your Chrome's address bar.

How do I search for something on github?

If there's a particular topic that interests you, visit github.com/topics/<topic> . For example, if you are interested in machine learning, you can find relevant projects and good first issues by visiting https://github.com/topics/machine-learning. You can browse popular topics by visiting Topics.

How do I see all files in a github repository?

The file finder feature allows you to search for a file in a repository using the GitLab UI. To use it: Go to your project's Repository > Files. In the upper right corner, select Find File.


1 Answers

According to https://help.github.com/articles/searching-issues/#search-based-on-when-an-issue-or-pull-request-was-created-or-last-updated

created:2016-12-01..2016-12-08

Will output issue created during these 7 days.

like image 166
sebastienvg Avatar answered Nov 08 '22 15:11

sebastienvg