1
0
Fork 0

Changelog 2022q1 (#16380)

* Initial changelog pass

* update generate-develop-pr-list content

* Fix bad word-ness

* Fix generate-develop-pr-list ignores

* Update docs/ChangeLog/20220226.md

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
This commit is contained in:
Joel Challis 2022-02-23 17:33:08 +00:00 committed by GitHub
parent bd01e1cee8
commit cf31355f08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 502 additions and 23 deletions

View file

@ -18,7 +18,8 @@ ignored_titles = ["Format code according to conventions"]
def _is_ignored(title):
for ignore in ignored_titles:
if ignore in title:
return
return True
return False
def _get_pr_info(cache, gh, pr_num):