chore: added some debug logging

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-01-18 17:43:40 +01:00
parent c732188aee
commit f2bb24298f
+3 -1
View File
@@ -23,12 +23,14 @@ jobs:
with:
github-token: ${{ steps.get_workflow_token.outputs.token }}
script: |
const { data: allPrs } = await github.paginate(octokit.rest.pulls.list, {
const { data: allPrs } = await github.paginate(github.rest.pulls.list, {
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open',
});
console.log(allPrs);
return allPrs;
# - uses: actions/checkout@v2