chore: dont destructure

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-01-18 17:45:03 +01:00
parent f2bb24298f
commit 65b0d1b3fd
+1 -1
View File
@@ -23,7 +23,7 @@ jobs:
with:
github-token: ${{ steps.get_workflow_token.outputs.token }}
script: |
const { data: allPrs } = await github.paginate(github.rest.pulls.list, {
const allPrs = await github.paginate(github.rest.pulls.list, {
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open',