This plugin builds pull requests in github and report results. Plugin ID ghprb Changes Latest Release 1.39.0 (archives) Source Code GitHub Usage Installations 2016-Nov 7462 This plugin is up for adoption. Want to help improve this plugin? Click here to learn more!Plugin Information
Latest Release Date
Required Core
Dependencies
Jul 05, 2017
2.1
credentials (version:1.21)
matrix-project (version:1.6)
build-flow-plugin (version:0.12, optional)
ssh-agent (version:1.3)
structs (version:1.6)
github (version:1.26.0)
git (version:2.4.0)
github-api (version:1.82)
plain-credentials (version:1.1)
job-dsl (version:1.39, optional)
token-macro (version:1.10, optional)
Issue Tracking
Pull Requests
Maintainer(s)
Open Issues
Pull Requests
Honza Brázdil (id: janinko)
Valdis Rigdon (id: valdisrigdon)
2016-Dec 7424
2017-Jan 7779
2017-Feb 7939
2017-Mar 8414
2017-Apr 8306
2017-May 8546
2017-Jun 8748
2017-Jul 8750
2017-Aug 9105
2017-Sep 9045
2017-Oct 9314
![]()
More up to date information is available on the:
Github README.md
Commands:
When a new pull request is opened in the project and the author of the pull request isn't white-listed, builder will ask "Can one of the admins verify this patch?".
- "ok to test" to accept this pull request for testing
- "test this please" for a one time test run
- "add to whitelist" to add the author to the whitelist
If the build fails for other various reasons you can rebuild.
- "retest this please" to start a new build
Installation:
- I recommend to create GitHub 'bot' user that will be used for communication with GitHub (however you can use your own account if you want).
- The user needs to have push rights for your repository (must be collaborator (user repo) or must have Push & Pull rights (organization repo)).
- If you want to use GitHub hooks have them set automatically the user needs to have administrator rights for your repository (must be owner (user repo) or must have Push, Pull & Administrative rights (organization repo))
- Install the plugin.
- Go to ``Manage Jenkins`` -> ``Configure System`` -> ``GitHub pull requests builder`` section.
- Add GitHub usernames of admins (these usernames will be used as defaults in new jobs).
- Under Advanced, you can modify:
- The phrase for adding users to the whitelist via comment. (Java regexp)
- The phrase for accepting a pull request for testing. (Java regexp)
- The phrase for starting a new build. (Java regexp)
- The crontab line. This specify default setting for new jobs.
- Under Application Setup
- There are global and job default extensions that can be configured for things like:
- Commit status updates
- Build status messages
- Adding lines from the build log to the build result message
- etc.
- There are global and job default extensions that can be configured for things like:
Credentials
- If you are using Enterprise GitHub set the server api URL in ``GitHub server api URL``. Otherwise leave there ``https://api.github.com``.
- A GitHub API token or username password can be used for access to the GitHub API
- To setup credentials for a given GitHub Server API URL:
- Click Add next to the ``Credentials`` drop down
- For a token select ``Kind`` -> ``Secret text``
- If you haven't generated an access token you can generate one in ``Test Credentials...``.
- Set your 'bot' user's GitHub username and password.
- Press the ``Create Access Token`` button
- Jenkins will create a token credential, and give you the id of the newly created credentials. The default description is: ``serverAPIUrl + " GitHub auto generated token credentials"``.
- If you haven't generated an access token you can generate one in ``Test Credentials...``.
- For username/password us ``Kind`` -> ``Username with password``
- The scope determines what has access to the credentials you are about to create
- The first part of the description is used to show different credentials in the drop down, so use something semi-descriptive
- Click ``Add``
- For a token select ``Kind`` -> ``Secret text``
- Credentials will automatically be created in the domain given by the ``GitHub Server API URL`` field.
- Select the credentials you just created in the drop down.
- The first fifty characters in the Description are used to differentiate credentials per job, so again use something semi-descriptive
- Click Add next to the ``Credentials`` drop down
- Add as many GitHub auth sections as you need, even duplicate server URLs
- Save to preserve your changes.
Creating job:
- Create a new job.
- Add the project's GitHub URL to the "GitHub project" field (the one you can enter into browser. eg: "https://github.com/janinko/ghprb")
- Select Git SCM.
- Add your GitHub "Repository URL".
Under Advanced, set "refspec" to
+refs/pull/*:refs/remotes/origin/pr/*
In "Branch Specifier", enter
${sha1}or if you want to use the actual commit in the pull request, use
${ghprbActualCommit}- Under "Build Triggers", check "Github pull requests builder".
- Add admins for this specific job.
- If you want to use GitHub hooks for automatic testing, read the help for "Use github hooks for build triggering" in job configuration. Then you can check the checkbox.
- In Advanced, you can modify:
- The crontab line for this specific job. This schedules polling to GitHub for new changes in Pull Requests.
- The whitelisted users for this specific job.
- The organisation names whose members are considered whitelisted for this specific job.
- Save to preserve your changes.
Make sure you DON'T have "Prune remote branches before build" advanced option selected, since it will prune the branch created to test this build.
If you want to manually build the job, in the job setting check "This build is parameterized" and add string parameter named "sha1". When starting build give the "sha1" parameter commit id you want to build or refname (eg: "origin/pr/9/head").
Environment Variables
The plugin makes some very useful environment variables available.
- ghprbActualCommit
- ghprbActualCommitAuthor
- ghprbActualCommitAuthorEmail
- ghprbPullDescription
- ghprbPullId
- ghprbPullLink
- ghprbPullTitle
- ghprbSourceBranch
- ghprbTargetBranch
- ghprbCommentBody
- sha1
Job DSL Support
The plugin contains an extension for the Job DSL plugin to add DSL syntax for configuring the build trigger and the pull request merger post-build action.
Here is an example showing all DSL syntax elements:
job('example') {
scm {
git {
remote {
github('test-owner/test-project')
refspec('+refs/pull/*:refs/remotes/origin/pr/*')
}
branch('${sha1}')
}
}
triggers {
githubPullRequest {
admin('user_1')
admins(['user_2', 'user_3'])
userWhitelist('you@you.com')
userWhitelist(['me@me.com', 'they@they.com'])
orgWhitelist('my_github_org')
orgWhitelist(['your_github_org', 'another_org'])
cron('H/5 * * * *')
triggerPhrase('OK to test')
onlyTriggerPhrase()
useGitHubHooks()
permitAll()
autoCloseFailedPullRequests()
allowMembersOfWhitelistedOrgsAsAdmin()
extensions {
commitStatus {
context('deploy to staging site')
triggeredStatus('starting deployment to staging site...')
startedStatus('deploying to staging site...')
statusUrl('http://mystatussite.com/prs')
completedStatus('SUCCESS', 'All is well')
completedStatus('FAILURE', 'Something went wrong. Investigate!')
completedStatus('PENDING', 'still in progress...')
completedStatus('ERROR', 'Something went really wrong. Investigate!')
}
}
}
}
}
See the README on GitHub for the latest information.
Changelog
>= 1.25
Changelog for 1.25 and upward is maintained on the plugins github page
1.24
Use signature checking for webhooks if desired.
Add custom messages to status updates and a custom url field.
1.23
Use credentials plugin for username/password combinations and tokens.
Support multiple GitHub endpoints.
1.22.x
Fix issue where if a project was disabled the Jenkins Trigger process would crash
Fix commit status context
Add one line test results for downstream builds
Miscellaneous bug fixes
1.22
Move commit status over to extension form. It is now configurable, satisfying #81, #73, and #19 at least.
1.21
Move all commenting logic out into extensions.
1.20.1
Null Pointer fix for trigger.
Added clarity to error message when access is forbidden.
1.20
PullRequestMerger now notifies the taskListener of failures.
AutoCloseFailedPullRequest has been extracted from the published URL check.
1.19
More work for disabled builds.
Unified tabs to spaces.
Updates to the tests, and added some tests.
1.18
Add support for folder projects.
Correcting issue with default credentials.
Correcting issue with ghRepository being null when it shouldn't be.
Ignoring case when matching repo to url.
Changing the wording for pull requests that are mergeable.
Change requestForTesting phrase to a textArea.
Check if project is disabled, if it is then don't do anything.
1.14
A comment file can be created during the build and added to any comment made to the pull request. podarok#33
Added a [skip ci] setting, that can be changed. Adding the skip statement to the pull request body will cause the job not to run. sathiya-mit#29
Escaping single quotes in log statements tIGO#38
Fixed owner name deduction from url on github hook handling nikicat#40
Removed unused Test field from the config
1.13-1
Replacing deprecated Github.connect method. tIGO#39
Added a merge plugin for post build. If the build is successful, the job can specify conditions under which the pull request "button" will be pressed.
1.12
Fixes issue with checking rate limits for GitHub Enterprise
Internal refactorings
Fixes checking of TriggerTimer (JENKINS-22550)
1.11.2
Major reduction in the number of requests made to GitHub to avoid rate limit issues
Fixed changelog for a build so it reports differences between Pull Request build
Fixes bug on getting author email address from GitHub APIs
Updates warning message is URL isn't set on the GitHub project plugin
Adds some additional parameters to the build, such as the source branch, pull request link, etc.
Success/failure message now put into the comment on Pull Requests
1.10 - 1.11.1
Not publicly released.
1.9
Added job specific triggers.
Added more informations as job parameters.
Fix support for gh-ent token generation. JENKINS-17334
Lookup PR detailed information for each PR. JENKINS-17852
Fix closing PR.
various bugfixes
1.8
Support auto-close at build level
add pull id and target branch to environment variables
fix GitHub Hooks when authentication is required on Jenkins
various bug fixes and improvements
1.7
implemented support for GitHub hooks
added button for generating API token
1.6
option for specifying how to mark unstable builds in GitHub
Close failed pull requests automatically if plugin admin configured it
customizeable pass/fail comments
Refactoring of code
help description in Jenkins configuration
1.5
checkbox enabling sending comments when update of comment status fails
option to enter organisations which members are whitelisted
support for Enterprise GitHub
link to pull request into build description
fixes
1.4
Changed comment commands - phrases for testing once, pull request or add user to whitelist
"test this please" starts new build
"ok to test" allow pull request for building
"add to whitelist" add user to whitelist
1.3
Add published URL feature.
Enable connection to GitHub Enterprise instances.
Enable authentication via a token.
When automatic merge is possible, build the merge.
1.2
Use commit status API instead of comments for reporting results.
20 Comments
Marco de Jong
recampbell Campbell
That's the most obscure plugin name I've ever seen. Can you rename it to github-pull-request-builder ?
Mike Dougherty
This should use a github API token instead of username and password, and it should also use the API made explicitly for this feature.
https://github.com/blog/1227-commit-status-api
Chuck LeDuc Díaz
Agreed 100%. The password in clear is particularly frightening.
Manuel de la Peña
Hi all!
Could you explain how pull request status is changed in Github? And which configuration of this plugin (related to users: repos' admin, whitelisted, etc) is necessary to mark that status in every Jenkins build?
Thanks!
Manuel de la Peña
It also would be nice to configure the message automatically written in the pull request: "Can one of the admins verify this patch?"
Thanks!
Marc Abramowitz
I just upgraded from 1.9 to 1.11.2 and our pull requests stopped building. Downgraded and they work again.
If you email me, I can try to get you more info to debug the issue. Could even hope on IM or IRC if you want.
Marc Abramowitz
OK, I did a little more digging and eventually discovered that 1.11.2 has a known issue with the rate limit API of GitHub Enterprise installations. It is fixed in the following pull request, which has been merged:
https://github.com/janinko/ghprb/pull/127
but there is not yet an official release of the plugin with this change.
Can we get a new release please?
Jens Brejner
It seems I have difficulties making this plugin work with multiple repositories ? I want this plugin to look for PR's on a private repository on github, and that works nice - but for testing the contents of the github repo, I need the contents of another repository (locally hosted on our inside). So I use the "Mulitple SCM's" plugin, to clone both repositories, and it appears that this plugin attempts to find the PR SHA in both repositories - which naturally fails.
Am I correct in assuming that multiple repositories is not supported by the plugin ?
Can you suggest a way to achieve my goal in some way ?
Tomoe Sugihara
I think I'm getting the same. I get the following error on the 2nd github project, which is not related to the one that pull request builder is listening on.
using .gitcredentials to set credentials > git config --local credential.helper store --file=/tmp/git4437896140776317333.credentials > git fetch --tags --progress https://github.com/accountX/projectX +refs/heads/*:refs/remotes/origin/* > git config --local --remove-section credential > git rev-parse origin/pr/220/merge^{commit} FATAL: Command "git rev-parse origin/pr/220/merge^{commit}" returned status code 128: stdout: origin/pr/220/merge^{commit} stderr: fatal: ambiguous argument 'origin/pr/220/merge^{commit}': unknown revision or path not in the working tree. Use '--' to separate paths from revisions hudson.plugins.git.GitException: Command "git rev-parse origin/pr/220/merge^{commit}" returned status code 128: stdout: origin/pr/220/merge^{commit} stderr: fatal: ambiguous argument 'origin/pr/220/merge^{commit}': unknown revision or path not in the working tree. Use '--' to separate paths from revisions at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1406) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1382) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1378) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1092) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1102) at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.revParse(CliGitAPIImpl.java:498) at hudson.plugins.git.GitAPI.revParse(GitAPI.java:257) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(RemoteInvocationHandler.java:309) at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:290) at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:249) at hudson.remoting.UserRequest.perform(UserRequest.java:118) at hudson.remoting.UserRequest.perform(UserRequest.java:48) at hudson.remoting.Request$2.run(Request.java:328) at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72) at java.util.concurrent.FutureTask.run(FutureTask.java:262) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:744)I'm now trying to workaround by checking out repos manually by shell executor at the beginning of the job. But it'd be great if this use case is supported.
Eric Lordahl
Can you guys update the ChangeLog?
Eric Lordahl
Can you guys update the ChangeLog?
gruberro -
Hi guys,
I've ran several times into the problem that double quotes or an apostrophe in a commit (e.g. for a revert commit) breaks the build pipeline. The build itself is done with Ant and the non-escaped auto-attached ghprb-params are breaking.
Any suggestion of how to work around or where to write a feature request (gpprb vs. Ant-builder)?
stanley shen
Hello, all
I am using the latest one, but in configuration page I cannot find a place to use existed git access token.
What should I do if I want to use an existed access token.
David Tanner
Use the Add button to add a set of credentials. Use Secret Text to add the token, and Username Password for user setup.
stanley shen
yes, I tried that way, but it always failed for the message like attached.
Finally I turn to 1.22.4 version, and it works for me then.
Mohit Garg
Hi All,
I am using this plugin with latest version. I am configuring a job using this plugin and finding some unexpected behaviour as listed below:
1. In admin list option, I providing an username who is not a admin and I am not getting an error msg.
2. In white-list option, I am providing single username(So the job will be triggered only for this user), but job is triggered for any user.
The above two points are my understanding. Am I understanding correctly.
If any one knows the about admin-list and white-list, please revert.
Thanks,
Mohit Garg
Ernesto Moyano
Is there any way to get this plugin working with the pipeline feature? I tried to implement it in the JenkinsFile but i wasn't able to call the plugin, i will appreciate any help.
Thanks,
Ernesto.
Brian Murrell
Is there any way to make this plugin work with matrix/multi-configuration jobs so that each child of the matrix updates it's own GH context?
As it is now, each child just overwrites the same context so last child wins.
Alec Matschiner
Does this plugin have the capability to detect out-of-date Pull Requests and then merge new changes into those pull requests and trigger Jenkins jobs to run against them automatically?
Example:
I have 2 Pull Requests (PR1, PR2) opened against the same master branch. Both of them were opened in parallel, and this plugin behaves as normal, triggering builds against each of these. Say that PR2 succeeds and is merged into master, and PR1 lags behind waiting for a review or something. Does this plugin have the capability to automatically detect this merge was completed, then update PR1 with the new changes to master, and then trigger a build to test the original PR1 commits with the new changes from PR2's merge?
I'm aware of https://help.github.com/articles/about-required-status-checks/ which will update a pull request in Github to let the user know that particular pull request is out of date and needs to be updated before it can be merged. The use could then click on 'Update Branch' and then Github would make a new commit with those changes in it. I'm just wondering if there is a way to automate this whole process via Jenkins. Would this be the plugin for that job, is there another one that will do it, or would it just be best to come up with a script on my own that does this?
Add Comment