Search for pull requests that are created 1 month ago and earlier

144 Views Asked by At

I am looking for a query, that will fulfil that:

is:pr is:open created:>=now-1m or is:pr is:open created:>={{manually entered DATE}}-1m

Can now and -1m be dynamic? (So there won't be needed manual input)

Is it even possible?

1

There are 1 best solutions below

2
On

Your approach was not that bad. The following should work for you.

is:pr is:open created:<YYYY-MM-DD

GitHub documentation.