Skip to content

Commit

Permalink
Exclude closed pull requests from changelog (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin authored Mar 29, 2023
1 parent 9cd9e5f commit c0c0dab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
* [#1654](https://github.com/elastic/rally/pull/1654): Add role metadata to node-stats telemetry device
* [#1649](https://github.com/elastic/rally/pull/1649): Allow specifying --installation-id in esrally install
* [#1643](https://github.com/elastic/rally/pull/1643): Skip response parsing for raw requests
* [#1637](https://github.com/elastic/rally/pull/1637): Build Rally binary using PyOxidizer
* [#1630](https://github.com/elastic/rally/pull/1630): Add delay and duration parameters to jfr telmetry device
* [#1623](https://github.com/elastic/rally/pull/1623): Support Python 3.11
* [#1619](https://github.com/elastic/rally/pull/1619): Add shard data to search operation's detailed-results meta-data
* [#1618](https://github.com/elastic/rally/pull/1618): Support meta-data for composite tasks
* [#1610](https://github.com/elastic/rally/pull/1610): Support specifying user tags as json
Expand Down
2 changes: 1 addition & 1 deletion changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def is_pr(issue):
:param issue: an issue. May also be a PR.
:return: True iff the issue is actually a PR.
"""
return issue.html_url and "pull" in issue.html_url
return issue.html_url and "pull" in issue.html_url and issue.pull_request().merged


def pr_list(i):
Expand Down

0 comments on commit c0c0dab

Please sign in to comment.