We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e6e75 commit 6e051a7Copy full SHA for 6e051a7
devops/gha.py
@@ -18,6 +18,8 @@ def parse_github_args() -> Tuple[str, str, str]:
18
def count_log_issues(fpath: str) -> int:
19
with open(fpath) as fhandle:
20
lines = fhandle.readlines()
21
+ if len(lines) < 2:
22
+ return 0
23
lines.reverse()
24
for line in lines:
25
if line.startswith('Found '):
0 commit comments