Skip to content

Commit d927184

Browse files
DOCSP-47444-exclude-mongo-internal-tix-changelog-script (#11100)
* DOCSP-47444-exclude-mongo-internal-tix-changelog-script * typo in query * also exclude tix w security level of private
1 parent b379afa commit d927184

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

changelogs/generatechangelogs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_jira_issues(fixVersion):
5353
#
5454
# See this comment for additional info:
5555
# https://github.com/10gen/docs-mongodb-internal/pull/2945#issuecomment-1517034809
56-
query = "project in {0} and fixVersion in versionMatch( {1} ) and resolution = 'Fixed' ORDER BY key ASC".format(
56+
query = "project in {0} and fixVersion in versionMatch( {1} ) and resolution = 'Fixed' and (level is EMPTY OR level NOT IN ('Mongo Internal', Private) ) ORDER BY key ASC".format(
5757
projects, fixVersion)
5858
issues = auth_jira.search_issues(query, maxResults=500)
5959

0 commit comments

Comments
 (0)