This is GoCD's Notification plugin that updates SCM with build status.
Supported:
- GitHub Pull Request status
- Stash Pull Request status
- Gerrit Change Set status
These plugins require GoCD version >= v15.x or above
Installation:
- Download the latest plugin jar from Releases section. Place it in
<go-server-location>/plugins/external& restart Go Server.
- Go Server notifies the plugin on every
Stage Status Changewith relevant details. The plugin scans thebuild-causeto see if thegithub.pr/stash.pr/gerrit.csmaterial is present. - If it is, then Pull Request/Change Set status is updated with
status=stage-result,context=pipeline-name/stage-name&target-url=trackback-url.
-
You will see
Github Pull Requests status notifier/Stash Pull Requests status notifier/Gerrit Change Set status notifieron plugin listing page
-
You can configure the plugin (this feature requires GoCD version >= v15.2, use system properties to configure the plugin)

Target URL:
- You can provide
trackbackthrough system propertygo.plugin.build.status.go-server. It defaults to 'http://localhost:8153' if not available. Eg:
-Dgo.plugin.build.status.go-server=http://localhost:8153
Authentication:
- You can choose to provide
username&passwordthrough system propertygo.plugin.build.status.github.username&go.plugin.build.status.github.password. Eg:
-Dgo.plugin.build.status.github.username=johndoe
-Dgo.plugin.build.status.github.password=thisaintapassword
or provide the oauth access token through system property go.plugin.build.status.github.oauth.
-Dgo.plugin.build.status.github.username=johndoe
-Dgo.plugin.build.status.github.oauth=thisaintatoken
- (or) through file
~/.githubon Go Server with the following contents:
login=johndoe
password=thisaintapassword
or
login=johndoe
oauth=thisaintatoken
Github Enterprise:
- You can choose to provide
endpointthrough system propertygo.plugin.build.status.github.endpoint. Eg:
-Dgo.plugin.build.status.github.endpoint=http://code.yourcompany.com
- (or) through file
~/.githubon Go Server with the following contents:
endpoint=http://code.yourcompany.com
Setup:
- You need to provide
endpoint,username&passwordthrough system propertygo.plugin.build.status.stash.endpoint,go.plugin.build.status.stash.username&go.plugin.build.status.stash.password. Eg:
-Dgo.plugin.build.status.stash.endpoint=http://localhost:7990
-Dgo.plugin.build.status.stash.username=johndoe
-Dgo.plugin.build.status.stash.password=thisaintapassword
Setup:
- You need to provide
endpoint,username&passwordthrough system propertygo.plugin.build.status.gerrit.endpoint,go.plugin.build.status.gerrit.username&go.plugin.build.status.gerrit.password. Eg:
-Dgo.plugin.build.status.gerrit.endpoint=http://localhost:7990
-Dgo.plugin.build.status.gerrit.username=johndoe
-Dgo.plugin.build.status.gerrit.password=thisaintapassword

