Fix wasm_stdlib check script

This commit is contained in:
Max Brunsfeld 2026-08-13 18:56:00 -07:00
parent 4ccc8b1058
commit b42213e59d

View file

@ -5,10 +5,11 @@ module.exports = async ({ github, context, core }) => {
const owner = context.repo.owner;
const repo = context.repo.repo;
const { data: files } = await github.rest.pulls.listFiles({
const files = await github.paginate(github.rest.pulls.listFiles, {
owner,
repo,
pull_number: prNumber
pull_number: prNumber,
per_page: 100
});
const changedFiles = files.map(file => file.filename);