diff --git a/.github/actions/determine-complexity/determine-pr-complexity.js b/.github/actions/determine-complexity/determine-pr-complexity.js index a366510389..7d5bae1462 100644 --- a/.github/actions/determine-complexity/determine-pr-complexity.js +++ b/.github/actions/determine-complexity/determine-pr-complexity.js @@ -16,16 +16,12 @@ */ async function getPRDetails(github, core, owner, repo, pull_number) { - core.info(`Fetching PR details`); - const { data: files } = await github.rest.pulls.listFiles({ owner, repo, pull_number }); - core.info(`Fetched PR details: ${JSON.stringify(files)}`); - let filesChanged = files.length; let linesChanged = files.reduce((total, file) => total + file.additions + file.deletions, 0);