Skip to content

Instantly share code, notes, and snippets.

@jamieklassen
Created August 16, 2019 13:28
Show Gist options
  • Select an option

  • Save jamieklassen/e9ebc3ed3fcf038626310fa021988643 to your computer and use it in GitHub Desktop.

Select an option

Save jamieklassen/e9ebc3ed3fcf038626310fa021988643 to your computer and use it in GitHub Desktop.
#!/bin/bash
cwd=/usr/local/lib/node_modules/@octokit/rest
if [ ! -d "$cwd" ]; then
npm i -g @octokit/rest
fi
cd $cwd
node -e "
require('@octokit/rest')()
.search
.issuesAndPullRequests({
q : 'is:pr is:open review-requested:pivotal-jamie-klassen'
}).then(r => r.data.items.forEach(pr => console.log(pr.html_url)))
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment