如何使用Github搜索某个时间范围内的pull request

How to use Github search for pull request within a time range

我正在使用 https://github.com/pulls to run some queries to find PRs reviewed by team members following examples at https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests

这就是我现在正在使用的,

is:pr review:approved reviewed-by:user merged:>=2021-07-01 archived:false is:closed 

有没有办法指定时间范围? 2021-07-01 和 2021-08-01 之间审核的 PR

试了还是不行

is:pr review:approved reviewed-by:user merged:<2021-08-01 merged:>=2021-07-01 archived:false is:closed 

merged:2021-07-01..2021-08-01

merged 限定符不应使用两次,因为那不是有效查询。

这个查询应该适合你:

is:pr review:approved reviewed-by:user merged:2021-07-01..2021-08-01 archived:false is:closed