prs-merged-since
This is a simple tool to list the PRs merged in a GitHub repo since a certain tag.
You can use it to find all the PRs merged since your last release, for example.
CLI Usage
Options:
--help Show help [boolean]
--version Show version number [boolean]
--repo GitHub repository, eg Microsoft/vscode [required]
--tag Tag to show merged PRs relative to, eg 1.1.3 [required]
--format Output format. Can be 'json' or 'markdown'. [default: "json"]
--references Extract link references when format is markdown
[boolean] [default: false]
For example:
$ prs-merged-since --repo prettier/prettier --tag 1.11.1
You can provide a GitHub API Authorization Token by using the GITHUB_API_TOKEN
environment variable:
$ GITHUB_API_TOKEN=your_token_goes_here prs-merged-since --repo prettier/prettier --tag 1.11.1
JS Usage
There is also a JavaScript API:
const prsMergedSince = ; ;
License
MIT