Skip to content

Commit

Permalink
Fix request param
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanNemeth committed Feb 17, 2025
1 parent bdaf33e commit fa94636
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface WorkflowRunRepository extends JpaRepository<WorkflowRun, Long>
+ "WHERE pr.id = :pullRequestId "
+ "AND wr.headSha = :headSha")
List<WorkflowRun> findByPullRequestsIdAndHeadShaWithTestSuites(
Long pullRequestsId, String headSha);
Long pullRequestId, String headSha);

// This loads the test suites for the workflow run eagerly
@Query(
Expand Down

0 comments on commit fa94636

Please sign in to comment.