You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env zx
|
|
|
|
$.verbose = false;
|
|
|
|
const prNumbers = JSON.parse(await $`gh pr list --author @me --json number`)
|
|
for (let number of prNumbers) {
|
|
await $`gh pr view ${number.number} --web`;
|
|
}
|