GitHub
The GitHub driver supports sources, triggers, and reporters. It can interact with the public GitHub service as well as site-local installations of GitHub enterprise.
Configure GitHub
There are two options currently available. GitHub’s project owner can either manually setup web-hook or install a GitHub Application. In the first case, the project’s owner needs to know the zuul endpoint and the webhook secrets.
Web-Hook
To configure a project’s webhook events:
Set Payload URL to
http://<zuul-hostname>:<port>/api/connection/<connection-name>/payload
.Set Content Type to
application/json
.
Select Events you are interested in. See below for the supported events.
You will also need to have a GitHub user created for your zuul:
Zuul public key needs to be added to the GitHub account
A api_token needs to be created too, see this article
Then in the zuul.conf, set webhook_token and api_token.
Application
To create a GitHub application:
Go to your organization settings page to create the application, e.g.: https://github.com/organizations/my-org/settings/apps/new
Set GitHub App name to “my-org-zuul”
Set Setup URL to your setup documentation, when user install the application they are redirected to this url
Set Webhook URL to
http://<zuul-hostname>:<port>/api/connection/<connection-name>/payload
.Create a Webhook secret
Set permissions:
Repository administration: Read
Repository contents: Read & Write (write to let zuul merge change)
Issues: Read & Write
Pull requests: Read & Write
Commit statuses: Read & Write
Set events subscription:
Commit comment
Create
Push
Release
Issue comment
Issues
Label
Pull request
Pull request review
Pull request review comment
Status
Set Where can this GitHub App be installed to “Any account”
Create the App
Generate a Private key in the app settings page
Then in the zuul.conf, set webhook_token, app_id and app_key. After restarting zuul-scheduler, verify in the ‘Advanced’ tab that the Ping payload works (green tick and 200 response)
Users can now install the application using its public page, e.g.: https://github.com/apps/my-org-zuul
Connection Configuration
There are two forms of operation. Either the Zuul installation can be configured as a Github App or it can be configured as a Webhook.
If the Github App approach is taken, the config settings app_id
and
app_key
are required. If the Webhook approach is taken, the api_token
setting is required.
The supported options in zuul.conf
connections are:
-
<github connection>
-
<github connection>.driver (required)
- github
The connection must set
driver=github
for GitHub connections.
-
<github connection>.app_id
App ID if you are using a GitHub App. Can be found under the Public Link on the right hand side labeled ID.
-
<github connection>.app_key
Path to a file containing the secret key Zuul will use to create tokens for the API interactions. In Github this is known as Private key and must be collected when generated.
-
<github connection>.api_token
API token for accessing GitHub if Zuul is configured with Webhooks. See Creating an access token for command-line use.
-
<github connection>.webhook_token
Required token for validating the webhook event payloads. In the GitHub App Configuration page, this is called Webhook secret. See Securing your webhooks.
-
<github connection>.sshkey
Default:~/.ssh/id_rsa
Path to SSH key to use when cloning github repositories.
-
<github connection>.server
Default:github.com
Hostname of the github install (such as a GitHub Enterprise).
-
<github connection>.canonical_hostname
The canonical hostname associated with the git repos on the GitHub server. Defaults to the value of <github connection>.server. This is used to identify projects from this connection by name and in preparing repos on the filesystem for use by jobs. Note that Zuul will still only communicate with the GitHub server identified by server; this option is useful if users customarily use a different hostname to clone or pull git repos so that when Zuul places them in the job’s working directory, they appear under this directory name.
-
<github connection>.verify_ssl
Default:true
Enable or disable ssl verification for GitHub Enterprise. This is useful for a connection to a test installation.
-
<github connection>.rate_limit_logging
Default:true
Enable or disable GitHub rate limit logging. If rate limiting is disabled in GitHub Enterprise this can save some network round trip times.
-
<github connection>.driver (required)
Trigger Configuration
GitHub webhook events can be configured as triggers.
A connection name with the GitHub driver can take multiple events with the following options.
-
pipeline.trigger.<github source>
The dictionary passed to the GitHub pipeline
trigger
attribute supports the following attributes:-
pipeline.trigger.<github source>.event (required)
The event from github. Supported events are:
- pull_request
- pull_request_review
- push
-
pipeline.trigger.<github source>.action
A pull_request event will have associated action(s) to trigger from. The supported actions are:
- opened
Pull request opened.
- changed
Pull request synchronized.
- closed
Pull request closed.
- reopened
Pull request reopened.
- comment
Comment added to pull request.
- labeled
Label added to pull request.
- unlabeled
Label removed from pull request.
- status
Status set on commit. The syntax is
user:status:value
. This also can be a regular expression.
A pull_request_review event will have associated action(s) to trigger from. The supported actions are:
- submitted
Pull request review added.
- dismissed
Pull request review removed.
-
pipeline.trigger.<github source>.branch
The branch associated with the event. Example:
master
. This field is treated as a regular expression, and multiple branches may be listed. Used forpull_request
andpull_request_review
events.
-
pipeline.trigger.<github source>.comment
This is only used for
pull_request
comment
actions. It accepts a list of regexes that are searched for in the comment string. If any of these regexes matches a portion of the comment string the trigger is matched.comment: retrigger
will match when comments containing ‘retrigger’ somewhere in the comment text are added to a pull request.
-
pipeline.trigger.<github source>.label
This is only used for
labeled
andunlabeled
pull_request
actions. It accepts a list of strings each of which matches the label name in the event literally.label: recheck
will match alabeled
action when pull request is labeled with arecheck
label.label: 'do not test'
will match aunlabeled
action when a label with namedo not test
is removed from the pull request.
-
pipeline.trigger.<github source>.state
This is only used for
pull_request_review
events. It accepts a list of strings each of which is matched to the review state, which can be one ofapproved
,comment
, orrequest_changes
.
-
pipeline.trigger.<github source>.status
This is used for
pull-request
andstatus
actions. It accepts a list of strings each of which matches the user setting the status, the status context, and the status itself in the format ofuser:context:status
. For example,zuul_github_ci_bot:check_pipeline:success
.
-
pipeline.trigger.<github source>.ref
This is only used for
push
events. This field is treated as a regular expression and multiple refs may be listed. GitHub always sends full ref name, eg.refs/tags/bar
and this string is matched against the regular expression.
-
pipeline.trigger.<github source>.event (required)
Reporter Configuration
Zuul reports back to GitHub via GitHub API. Available reports include a PR comment containing the build results, a commit status on start, success and failure, an issue label addition/removal on the PR, and a merge of the PR itself. Status name, description, and context is taken from the pipeline.
-
pipeline.<reporter>.<github source>
To report to GitHub, the dictionaries passed to any of the pipeline reporter attributes support the following attributes:
-
pipeline.<reporter>.<github source>.status
String value (
pending
,success
,failure
) that the reporter should set as the commit status on github.
-
pipeline.<reporter>.<github source>.status-url
Default:web.status_url or the empty string
String value for a link url to set in the github status. Defaults to the zuul server status_url, or the empty string if that is unset.
-
pipeline.<reporter>.<github source>.comment
Default:true
Boolean value that determines if the reporter should add a comment to the pipeline status to the github pull request. Only used for Pull Request based items.
-
pipeline.<reporter>.<github source>.merge
Default:false
Boolean value that determines if the reporter should merge the pull reqeust. Only used for Pull Request based items.
-
pipeline.<reporter>.<github source>.label
List of strings each representing an exact label name which should be added to the pull request by reporter. Only used for Pull Request based items.
-
pipeline.<reporter>.<github source>.unlabel
List of strings each representing an exact label name which should be removed from the pull request by reporter. Only used for Pull Request based items.
-
pipeline.<reporter>.<github source>.status
Requirements Configuration
As described in pipeline.require and pipeline.reject,
pipelines may specify that items meet certain conditions in order to
be enqueued into the pipeline. These conditions vary according to the
source of the project in question. To supply requirements for changes
from a GitHub source named my-github
, create a congfiguration such
as the following:
pipeline:
require:
my-github:
review:
- type: approved
This indicates that changes originating from the GitHub connection
named my-github
must have an approved code review in order to be
enqueued into the pipeline.
-
pipeline.require.<github source>
The dictionary passed to the GitHub pipeline require attribute supports the following attributes:
-
pipeline.require.<github source>.review
This requires that a certain kind of code review be present for the pull request (it could be added by the event in question). It takes several sub-parameters, all of which are optional and are combined together so that there must be a code review matching all specified requirements.
-
pipeline.require.<github source>.review.username
If present, a code review from this username is required. It is treated as a regular expression.
-
pipeline.require.<github source>.review.email
If present, a code review with this email address is required. It is treated as a regular expression.
-
pipeline.require.<github source>.review.older-than
If present, the code review must be older than this amount of time to match. Provide a time interval as a number with a suffix of “w” (weeks), “d” (days), “h” (hours), “m” (minutes), “s” (seconds). Example
48h
or2d
.
-
pipeline.require.<github source>.review.newer-than
If present, the code review must be newer than this amount of time to match. Same format as “older-than”.
-
pipeline.require.<github source>.review.type
If present, the code review must match this type (or types).
-
pipeline.require.<github source>.review.permission
If present, the author of the code review must have this permission (or permissions). The available values are
read
,write
, andadmin
.
-
pipeline.require.<github source>.review.username
-
pipeline.require.<github source>.open
A boolean value (
true
orfalse
) that indicates whether the change must be open or closed in order to be enqueued.
-
pipeline.require.<github source>.merged
A boolean value (
true
orfalse
) that indicates whether the change must be merged or not in order to be enqueued.
-
pipeline.require.<github source>.current-patchset
A boolean value (
true
orfalse
) that indicates whether the item must be associated with the latest commit in the pull request in order to be enqueued.
-
pipeline.require.<github source>.status
A string value that corresponds with the status of the pull request. The syntax is
user:status:value
. This can also be a regular expression.
-
pipeline.require.<github source>.label
A string value indicating that the pull request must have the indicated label (or labels).
-
pipeline.require.<github source>.review
-
pipeline.reject.<github source>
The reject attribute is the mirror of the require attribute. It also accepts a dictionary under the connection name. This dictionary supports the following attributes:
-
pipeline.reject.<github source>.review
This takes a list of code reviews. If a code review matches the provided criteria the pull request can not be entered into the pipeline. It follows the same syntax as pipeline.require.<github source>.review
-
pipeline.reject.<github source>.review