pr-tagger
v0.7.1
Published
Add comment to PRs in GitHub with version tag for latest release
Downloads
72
Readme
pr-tagger
Add comment to pull requests in GitHub with version tag for latest release.
This is a command-line tool to help automate this workflow:
- Multiple pull requests are created in GitHub.
- Pull requests are merged using GitHub web UI.
- A new version of the project is released and tagged.
- A comment is added to every pull request using as content the tag.
Adding a comment with the released tag to every pull request might be useful in the future to quickly figure out in which version some changes were released. However, it's tedious to go through the git log output to figure out which pull requests where merged in a given release. Fortunately, this can be easily automated and that's exactly what this tool does.
Installation
The recommended way to install pr-tagger
is as a development dependency for a project:
npm install --save-dev pr-tagger
and then integrate it in the project workflow as an npm
script. More information about this in the configuration section below.
However, when the tool is installed for the first time, it's fine to install it globally and give it a try from the command line:
npm install -g pr-tagger
Usage
Note: Please use the -n/--dry-run
option when testing the tool to make sure no comment is actually added to a github pull request.
- Add comment with latest version tag to merged PRs:
pr-tagger
- Same as above for a project without standard
repository
data in itspackage.json
file:
pr-tagger -o <owner> -p <project>
- Add comment for particular version tag to merged PRs:
pr-tagger -t <tag>
Command line options
-p/--project [project]
: GitHub project-o/--owner [user]
: GitHub repository owner
GitHub repository owner and project name fields are extracted from the package.json
file found in the same directory where the script is invoked. In particular, they are extracted from the repository.url
field if repository.type
is set to git
. If the package.json
file is not found or the parsing code fails (please open a new issue if that happens), then it's still possible to use these flags to set the parameters manually.
-a/--access-token [token]
: GitHub access token-u/--user [user]
: GitHub user
GiHub access token and user to access the repository content and be able to write comments in pull requests. By default the GitHub user is assumed to be the same one as the repository owner and the access token is undefined
. If no token is explicitly passed, the user will be prompted to enter GitHub user and password the first time to persist it to a file that will be used in the future without asking the user again for any password. The -a/--access-token
option is specially useful in continuous integration environments, where no configuration file will be persisted, as described in the configuration section below.
-t/--tag [tag]
: Git tag
The most recent tag is used as the latest commit to look for merge messages by default. If the tag for which comments should be added is not the most recent one, use this option to set it to any semver valid tag present in the repository.
-l/--log-level [logLevel]
: Log level
This flag can be used to set the level of verbosity of the output. The default value is info
which outputs a reasonable amount of information. To troubleshoot problems, debug
is recommended.
-n/--dry-run
: Log actions, but skip adding comments to GitHub PRs
When this option is set, all the actions that the tool would normally do will be performed, except for writing comments to the GitHub pull requests for which no semver comment was found.
Configuration
Despite pr-tagger
can be manually executed after every new release, there's no need to do so. Available alternatives are:
npm
scripts
The postversion
script can be used to push changes and tags to the GitHub repository and add comments to pull requests with pr-tagger
as follows:
{
"scripts": {
"postversion": "git push && git push --tags && pr-tagger"
}
}
Similarly, the postpublish
script could be used as well with the same purpose.
- Deploy command in contiuous integration
For example, if you're using travis, pr-tagger
can be configured to run after deployment to npm
like this:
after_deploy:
- pr-tagger --access-token ${GH_TOKEN}
env:
global:
secure: <encripted_value>
where the GH_TOKEN
environment variable is set in the job configuration using the travis
command line tool:
travis encrypt GH_TOKEN=<value> --add
Alternatively, the web client also allows to enter environment variable values in the job configuration page.
Contributing
Any contribution is more than welcome. In particular, if: