Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/pip/pytest-cov-4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EliadCohen authored Mar 25, 2024
2 parents 1c1dfed + 86af58d commit bfd7829
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @nathan-weinberg @agarcia64
* @nathan-weinberg @EliadCohen
2 changes: 1 addition & 1 deletion jeeves/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_jenkins_job_info(server, job_name, filter_param_name=None, filter_param_
break
if filter_param_name is not None:
api_param_value = [param['value'] for param in build_parameters if filter_param_name == param.get('name', '')][0]
if api_param_value == filter_param_value:
if str(api_param_value).lower() == str(filter_param_value).lower():
break
if build_info['previousBuild'] is None:
raise Exception("No filter match")
Expand Down

0 comments on commit bfd7829

Please sign in to comment.