Skip to content

Commit

Permalink
#2031 fix nightly tests
Browse files Browse the repository at this point in the history
  • Loading branch information
olehnikolaiev committed Feb 12, 2025
1 parent 465d5f7 commit 6280c22
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,10 @@ jobs:
for (const pr of prs.data) {
if (pr.draft) continue;
const commits = await github.rest.pulls.listCommits({
const commits = await github.rest.repos.listCommits({
owner: context.repo.owner,
repo: context.repo.repo,
sha: pr.head.ref,
rel: 'all',
});
const recentCommits = commits.data.filter(commit => {
Expand Down

0 comments on commit 6280c22

Please sign in to comment.