deployments
Overview
Name | deployments |
Type | Resource |
Id | github.repos.deployments |
Fields
Name | Datatype | Description |
---|---|---|
id | integer | Unique identifier of the deployment |
description | string | |
created_at | string | |
creator | object | A GitHub user. |
environment | string | Name for the target deployment environment. |
node_id | string | |
original_environment | string | |
payload | `` | |
performed_via_github_app | object | GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub. |
production_environment | boolean | Specifies if the given environment is one that end-users directly interact with. Default: false. |
ref | string | The ref to deploy. This can be a branch, tag, or sha. |
repository_url | string | |
sha | string | |
statuses_url | string | |
task | string | Parameter to specify a task to execute |
transient_environment | boolean | Specifies if the given environment is will no longer exist at some point in the future. Default: false. |
updated_at | string | |
url | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_deployment | SELECT | deployment_id, owner, repo | |
list_deployments | SELECT | owner, repo | Simple filtering of deployments is available via query parameters: |
create_deployment | INSERT | owner, repo, data__ref | Deployments offer a few configurable parameters with certain defaults. The ref parameter can be any named branch, tag, or SHA. At GitHub we often deploy branches and verify thembefore we merge a pull request. The environment parameter allows deployments to be issued to different runtime environments. Teams often havemultiple environments for verifying their applications, such as production , staging , and qa . This parametermakes it easier to track which environments have requested deployments. The default environment is production .The auto_merge parameter is used to ensure that the requested ref is not behind the repository's default branch. Ifthe ref is behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds, the API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will return a failure response. By default, commit statuses for every submitted context must be in a success state. The required_contexts parameter allows you to specify a subset of contexts that must be success , or tospecify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do not require any contexts or create any commit statuses, the deployment will always succeed. The payload parameter is available for any extra information that a deployment system might need. It is a JSON textfield that will be passed on when a deployment event is dispatched. The task parameter is used by the deployment system to allow different execution paths. In the web world this mightbe deploy:migrations to run schema changes on the system. In the compiled world this could be a flag to compile anapplication with debugging enabled. Users with repo or repo_deployment scopes can create a deployment for a given ref.Merged branch response: You will see this response when GitHub automatically merges the base branch into the topic branch instead of creating a deployment. This auto-merge happens when: Auto-merge option is enabled in the repository Topic branch does not include the latest changes on the base branch, which is master in the response example* There are no merge conflicts If there are no new commits in the base branch, a new request to create a deployment should give a successful response. Merge conflict response: This error happens when the auto_merge option is enabled and when the default branch (in this case master ), can'tbe merged into the branch that's being deployed (in this case topic-branch ), due to merge conflicts.Failed commit status checks: This error happens when the required_contexts parameter indicates that one or more contexts need to have a success status for the commit to be deployed, but one or more of the required contexts do not have a state of success . |
delete_deployment | DELETE | deployment_id, owner, repo | If the repository only has one deployment, you can delete the deployment regardless of its status. If the repository has more than one deployment, you can only delete inactive deployments. This ensures that repositories with multiple deployments will always have an active deployment. Anyone with repo or repo_deployment scopes can delete a deployment.To set a deployment as inactive, you must: Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment. Mark the active deployment as inactive by adding any non-successful deployment status. For more information, see "Create a deployment" and "Create a deployment status." |