Skip to content

Commit 2c9a1df

Browse files
committed
Fix a query for support role report
The missing space at the end of the query made the query broken. Signed-off-by: Ales Raszka <araszka@redhat.com>
1 parent a8a7e67 commit 2c9a1df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

operator-pipeline-images/operatorcert/entrypoints/support_summary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def query(self) -> str:
172172
str: A GitHub search query string.
173173
"""
174174
return (
175-
f"{self.repo_query} is:pr is:open label:operator-hosted-pipeline/passed"
175+
f"{self.repo_query} is:pr is:open label:operator-hosted-pipeline/passed "
176176
f"{EXCLUDE_FILTER}"
177177
)
178178

0 commit comments

Comments
 (0)