1
0
mirror of synced 2026-01-05 21:04:17 -05:00

fix syntax error in workflow (#22984)

This commit is contained in:
Rachael Sewell
2021-11-18 14:43:36 -08:00
committed by GitHub
parent 0cbf48b6aa
commit 16cabecb78

View File

@@ -6,9 +6,9 @@ const github = getOctokit(token)
main()
async function main() {
const pull = await github.rest.pulls.get(
org,
repo,
const pull = await github.rest.pulls.get({
owner: org,
repo: repo,
pull_number: parseInt(prNumber),
})