github.RepositoryPullRequest
Explore with Pulumi AI
This resource allows you to create and manage PullRequests for repositories within your GitHub organization or personal account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";
const example = new github.RepositoryPullRequest("example", {
baseRepository: "example-repository",
baseRef: "main",
headRef: "feature-branch",
title: "My newest feature",
body: "This will change everything",
});
import pulumi
import pulumi_github as github
example = github.RepositoryPullRequest("example",
base_repository="example-repository",
base_ref="main",
head_ref="feature-branch",
title="My newest feature",
body="This will change everything")
package main
import (
"github.com/pulumi/pulumi-github/sdk/v6/go/github"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := github.NewRepositoryPullRequest(ctx, "example", &github.RepositoryPullRequestArgs{
BaseRepository: pulumi.String("example-repository"),
BaseRef: pulumi.String("main"),
HeadRef: pulumi.String("feature-branch"),
Title: pulumi.String("My newest feature"),
Body: pulumi.String("This will change everything"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Github = Pulumi.Github;
return await Deployment.RunAsync(() =>
{
var example = new Github.RepositoryPullRequest("example", new()
{
BaseRepository = "example-repository",
BaseRef = "main",
HeadRef = "feature-branch",
Title = "My newest feature",
Body = "This will change everything",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.github.RepositoryPullRequest;
import com.pulumi.github.RepositoryPullRequestArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new RepositoryPullRequest("example", RepositoryPullRequestArgs.builder()
.baseRepository("example-repository")
.baseRef("main")
.headRef("feature-branch")
.title("My newest feature")
.body("This will change everything")
.build());
}
}
resources:
example:
type: github:RepositoryPullRequest
properties:
baseRepository: example-repository
baseRef: main
headRef: feature-branch
title: My newest feature
body: This will change everything
Create RepositoryPullRequest Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RepositoryPullRequest(name: string, args: RepositoryPullRequestArgs, opts?: CustomResourceOptions);
@overload
def RepositoryPullRequest(resource_name: str,
args: RepositoryPullRequestArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RepositoryPullRequest(resource_name: str,
opts: Optional[ResourceOptions] = None,
base_ref: Optional[str] = None,
base_repository: Optional[str] = None,
head_ref: Optional[str] = None,
title: Optional[str] = None,
body: Optional[str] = None,
maintainer_can_modify: Optional[bool] = None,
owner: Optional[str] = None)
func NewRepositoryPullRequest(ctx *Context, name string, args RepositoryPullRequestArgs, opts ...ResourceOption) (*RepositoryPullRequest, error)
public RepositoryPullRequest(string name, RepositoryPullRequestArgs args, CustomResourceOptions? opts = null)
public RepositoryPullRequest(String name, RepositoryPullRequestArgs args)
public RepositoryPullRequest(String name, RepositoryPullRequestArgs args, CustomResourceOptions options)
type: github:RepositoryPullRequest
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RepositoryPullRequestArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RepositoryPullRequestArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RepositoryPullRequestArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RepositoryPullRequestArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RepositoryPullRequestArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var repositoryPullRequestResource = new Github.RepositoryPullRequest("repositoryPullRequestResource", new()
{
BaseRef = "string",
BaseRepository = "string",
HeadRef = "string",
Title = "string",
Body = "string",
MaintainerCanModify = false,
Owner = "string",
});
example, err := github.NewRepositoryPullRequest(ctx, "repositoryPullRequestResource", &github.RepositoryPullRequestArgs{
BaseRef: pulumi.String("string"),
BaseRepository: pulumi.String("string"),
HeadRef: pulumi.String("string"),
Title: pulumi.String("string"),
Body: pulumi.String("string"),
MaintainerCanModify: pulumi.Bool(false),
Owner: pulumi.String("string"),
})
var repositoryPullRequestResource = new RepositoryPullRequest("repositoryPullRequestResource", RepositoryPullRequestArgs.builder()
.baseRef("string")
.baseRepository("string")
.headRef("string")
.title("string")
.body("string")
.maintainerCanModify(false)
.owner("string")
.build());
repository_pull_request_resource = github.RepositoryPullRequest("repositoryPullRequestResource",
base_ref="string",
base_repository="string",
head_ref="string",
title="string",
body="string",
maintainer_can_modify=False,
owner="string")
const repositoryPullRequestResource = new github.RepositoryPullRequest("repositoryPullRequestResource", {
baseRef: "string",
baseRepository: "string",
headRef: "string",
title: "string",
body: "string",
maintainerCanModify: false,
owner: "string",
});
type: github:RepositoryPullRequest
properties:
baseRef: string
baseRepository: string
body: string
headRef: string
maintainerCanModify: false
owner: string
title: string
RepositoryPullRequest Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RepositoryPullRequest resource accepts the following input properties:
- Base
Ref string - Name of the branch serving as the base of the Pull Request.
- Base
Repository string - Name of the base repository to retrieve the Pull Requests from.
- Head
Ref string - Name of the branch serving as the head of the Pull Request.
- Title string
- The title of the Pull Request.
- Body string
- Body of the Pull Request.
- Maintainer
Can boolModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- Owner string
- Owner of the repository. If not provided, the provider's default owner is used.
- Base
Ref string - Name of the branch serving as the base of the Pull Request.
- Base
Repository string - Name of the base repository to retrieve the Pull Requests from.
- Head
Ref string - Name of the branch serving as the head of the Pull Request.
- Title string
- The title of the Pull Request.
- Body string
- Body of the Pull Request.
- Maintainer
Can boolModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- Owner string
- Owner of the repository. If not provided, the provider's default owner is used.
- base
Ref String - Name of the branch serving as the base of the Pull Request.
- base
Repository String - Name of the base repository to retrieve the Pull Requests from.
- head
Ref String - Name of the branch serving as the head of the Pull Request.
- title String
- The title of the Pull Request.
- body String
- Body of the Pull Request.
- maintainer
Can BooleanModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- owner String
- Owner of the repository. If not provided, the provider's default owner is used.
- base
Ref string - Name of the branch serving as the base of the Pull Request.
- base
Repository string - Name of the base repository to retrieve the Pull Requests from.
- head
Ref string - Name of the branch serving as the head of the Pull Request.
- title string
- The title of the Pull Request.
- body string
- Body of the Pull Request.
- maintainer
Can booleanModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- owner string
- Owner of the repository. If not provided, the provider's default owner is used.
- base_
ref str - Name of the branch serving as the base of the Pull Request.
- base_
repository str - Name of the base repository to retrieve the Pull Requests from.
- head_
ref str - Name of the branch serving as the head of the Pull Request.
- title str
- The title of the Pull Request.
- body str
- Body of the Pull Request.
- maintainer_
can_ boolmodify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- owner str
- Owner of the repository. If not provided, the provider's default owner is used.
- base
Ref String - Name of the branch serving as the base of the Pull Request.
- base
Repository String - Name of the base repository to retrieve the Pull Requests from.
- head
Ref String - Name of the branch serving as the head of the Pull Request.
- title String
- The title of the Pull Request.
- body String
- Body of the Pull Request.
- maintainer
Can BooleanModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- owner String
- Owner of the repository. If not provided, the provider's default owner is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the RepositoryPullRequest resource produces the following output properties:
- Base
Sha string - Head commit SHA of the Pull Request base.
- Draft bool
- Indicates Whether this Pull Request is a draft.
- Head
Sha string - Head commit SHA of the Pull Request head.
- Id string
- The provider-assigned unique ID for this managed resource.
- Labels List<string>
- List of label names set on the Pull Request.
- Number int
- The number of the Pull Request within the repository.
- Opened
At int - Unix timestamp indicating the Pull Request creation time.
- Opened
By string - GitHub login of the user who opened the Pull Request.
- State string
- the current Pull Request state - can be "open", "closed" or "merged".
- Updated
At int - The timestamp of the last Pull Request update.
- Base
Sha string - Head commit SHA of the Pull Request base.
- Draft bool
- Indicates Whether this Pull Request is a draft.
- Head
Sha string - Head commit SHA of the Pull Request head.
- Id string
- The provider-assigned unique ID for this managed resource.
- Labels []string
- List of label names set on the Pull Request.
- Number int
- The number of the Pull Request within the repository.
- Opened
At int - Unix timestamp indicating the Pull Request creation time.
- Opened
By string - GitHub login of the user who opened the Pull Request.
- State string
- the current Pull Request state - can be "open", "closed" or "merged".
- Updated
At int - The timestamp of the last Pull Request update.
- base
Sha String - Head commit SHA of the Pull Request base.
- draft Boolean
- Indicates Whether this Pull Request is a draft.
- head
Sha String - Head commit SHA of the Pull Request head.
- id String
- The provider-assigned unique ID for this managed resource.
- labels List<String>
- List of label names set on the Pull Request.
- number Integer
- The number of the Pull Request within the repository.
- opened
At Integer - Unix timestamp indicating the Pull Request creation time.
- opened
By String - GitHub login of the user who opened the Pull Request.
- state String
- the current Pull Request state - can be "open", "closed" or "merged".
- updated
At Integer - The timestamp of the last Pull Request update.
- base
Sha string - Head commit SHA of the Pull Request base.
- draft boolean
- Indicates Whether this Pull Request is a draft.
- head
Sha string - Head commit SHA of the Pull Request head.
- id string
- The provider-assigned unique ID for this managed resource.
- labels string[]
- List of label names set on the Pull Request.
- number number
- The number of the Pull Request within the repository.
- opened
At number - Unix timestamp indicating the Pull Request creation time.
- opened
By string - GitHub login of the user who opened the Pull Request.
- state string
- the current Pull Request state - can be "open", "closed" or "merged".
- updated
At number - The timestamp of the last Pull Request update.
- base_
sha str - Head commit SHA of the Pull Request base.
- draft bool
- Indicates Whether this Pull Request is a draft.
- head_
sha str - Head commit SHA of the Pull Request head.
- id str
- The provider-assigned unique ID for this managed resource.
- labels Sequence[str]
- List of label names set on the Pull Request.
- number int
- The number of the Pull Request within the repository.
- opened_
at int - Unix timestamp indicating the Pull Request creation time.
- opened_
by str - GitHub login of the user who opened the Pull Request.
- state str
- the current Pull Request state - can be "open", "closed" or "merged".
- updated_
at int - The timestamp of the last Pull Request update.
- base
Sha String - Head commit SHA of the Pull Request base.
- draft Boolean
- Indicates Whether this Pull Request is a draft.
- head
Sha String - Head commit SHA of the Pull Request head.
- id String
- The provider-assigned unique ID for this managed resource.
- labels List<String>
- List of label names set on the Pull Request.
- number Number
- The number of the Pull Request within the repository.
- opened
At Number - Unix timestamp indicating the Pull Request creation time.
- opened
By String - GitHub login of the user who opened the Pull Request.
- state String
- the current Pull Request state - can be "open", "closed" or "merged".
- updated
At Number - The timestamp of the last Pull Request update.
Look up Existing RepositoryPullRequest Resource
Get an existing RepositoryPullRequest resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RepositoryPullRequestState, opts?: CustomResourceOptions): RepositoryPullRequest
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
base_ref: Optional[str] = None,
base_repository: Optional[str] = None,
base_sha: Optional[str] = None,
body: Optional[str] = None,
draft: Optional[bool] = None,
head_ref: Optional[str] = None,
head_sha: Optional[str] = None,
labels: Optional[Sequence[str]] = None,
maintainer_can_modify: Optional[bool] = None,
number: Optional[int] = None,
opened_at: Optional[int] = None,
opened_by: Optional[str] = None,
owner: Optional[str] = None,
state: Optional[str] = None,
title: Optional[str] = None,
updated_at: Optional[int] = None) -> RepositoryPullRequest
func GetRepositoryPullRequest(ctx *Context, name string, id IDInput, state *RepositoryPullRequestState, opts ...ResourceOption) (*RepositoryPullRequest, error)
public static RepositoryPullRequest Get(string name, Input<string> id, RepositoryPullRequestState? state, CustomResourceOptions? opts = null)
public static RepositoryPullRequest get(String name, Output<String> id, RepositoryPullRequestState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Base
Ref string - Name of the branch serving as the base of the Pull Request.
- Base
Repository string - Name of the base repository to retrieve the Pull Requests from.
- Base
Sha string - Head commit SHA of the Pull Request base.
- Body string
- Body of the Pull Request.
- Draft bool
- Indicates Whether this Pull Request is a draft.
- Head
Ref string - Name of the branch serving as the head of the Pull Request.
- Head
Sha string - Head commit SHA of the Pull Request head.
- Labels List<string>
- List of label names set on the Pull Request.
- Maintainer
Can boolModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- Number int
- The number of the Pull Request within the repository.
- Opened
At int - Unix timestamp indicating the Pull Request creation time.
- Opened
By string - GitHub login of the user who opened the Pull Request.
- Owner string
- Owner of the repository. If not provided, the provider's default owner is used.
- State string
- the current Pull Request state - can be "open", "closed" or "merged".
- Title string
- The title of the Pull Request.
- Updated
At int - The timestamp of the last Pull Request update.
- Base
Ref string - Name of the branch serving as the base of the Pull Request.
- Base
Repository string - Name of the base repository to retrieve the Pull Requests from.
- Base
Sha string - Head commit SHA of the Pull Request base.
- Body string
- Body of the Pull Request.
- Draft bool
- Indicates Whether this Pull Request is a draft.
- Head
Ref string - Name of the branch serving as the head of the Pull Request.
- Head
Sha string - Head commit SHA of the Pull Request head.
- Labels []string
- List of label names set on the Pull Request.
- Maintainer
Can boolModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- Number int
- The number of the Pull Request within the repository.
- Opened
At int - Unix timestamp indicating the Pull Request creation time.
- Opened
By string - GitHub login of the user who opened the Pull Request.
- Owner string
- Owner of the repository. If not provided, the provider's default owner is used.
- State string
- the current Pull Request state - can be "open", "closed" or "merged".
- Title string
- The title of the Pull Request.
- Updated
At int - The timestamp of the last Pull Request update.
- base
Ref String - Name of the branch serving as the base of the Pull Request.
- base
Repository String - Name of the base repository to retrieve the Pull Requests from.
- base
Sha String - Head commit SHA of the Pull Request base.
- body String
- Body of the Pull Request.
- draft Boolean
- Indicates Whether this Pull Request is a draft.
- head
Ref String - Name of the branch serving as the head of the Pull Request.
- head
Sha String - Head commit SHA of the Pull Request head.
- labels List<String>
- List of label names set on the Pull Request.
- maintainer
Can BooleanModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- number Integer
- The number of the Pull Request within the repository.
- opened
At Integer - Unix timestamp indicating the Pull Request creation time.
- opened
By String - GitHub login of the user who opened the Pull Request.
- owner String
- Owner of the repository. If not provided, the provider's default owner is used.
- state String
- the current Pull Request state - can be "open", "closed" or "merged".
- title String
- The title of the Pull Request.
- updated
At Integer - The timestamp of the last Pull Request update.
- base
Ref string - Name of the branch serving as the base of the Pull Request.
- base
Repository string - Name of the base repository to retrieve the Pull Requests from.
- base
Sha string - Head commit SHA of the Pull Request base.
- body string
- Body of the Pull Request.
- draft boolean
- Indicates Whether this Pull Request is a draft.
- head
Ref string - Name of the branch serving as the head of the Pull Request.
- head
Sha string - Head commit SHA of the Pull Request head.
- labels string[]
- List of label names set on the Pull Request.
- maintainer
Can booleanModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- number number
- The number of the Pull Request within the repository.
- opened
At number - Unix timestamp indicating the Pull Request creation time.
- opened
By string - GitHub login of the user who opened the Pull Request.
- owner string
- Owner of the repository. If not provided, the provider's default owner is used.
- state string
- the current Pull Request state - can be "open", "closed" or "merged".
- title string
- The title of the Pull Request.
- updated
At number - The timestamp of the last Pull Request update.
- base_
ref str - Name of the branch serving as the base of the Pull Request.
- base_
repository str - Name of the base repository to retrieve the Pull Requests from.
- base_
sha str - Head commit SHA of the Pull Request base.
- body str
- Body of the Pull Request.
- draft bool
- Indicates Whether this Pull Request is a draft.
- head_
ref str - Name of the branch serving as the head of the Pull Request.
- head_
sha str - Head commit SHA of the Pull Request head.
- labels Sequence[str]
- List of label names set on the Pull Request.
- maintainer_
can_ boolmodify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- number int
- The number of the Pull Request within the repository.
- opened_
at int - Unix timestamp indicating the Pull Request creation time.
- opened_
by str - GitHub login of the user who opened the Pull Request.
- owner str
- Owner of the repository. If not provided, the provider's default owner is used.
- state str
- the current Pull Request state - can be "open", "closed" or "merged".
- title str
- The title of the Pull Request.
- updated_
at int - The timestamp of the last Pull Request update.
- base
Ref String - Name of the branch serving as the base of the Pull Request.
- base
Repository String - Name of the base repository to retrieve the Pull Requests from.
- base
Sha String - Head commit SHA of the Pull Request base.
- body String
- Body of the Pull Request.
- draft Boolean
- Indicates Whether this Pull Request is a draft.
- head
Ref String - Name of the branch serving as the head of the Pull Request.
- head
Sha String - Head commit SHA of the Pull Request head.
- labels List<String>
- List of label names set on the Pull Request.
- maintainer
Can BooleanModify - Controls whether the base repository maintainers can modify the Pull Request. Default: false.
- number Number
- The number of the Pull Request within the repository.
- opened
At Number - Unix timestamp indicating the Pull Request creation time.
- opened
By String - GitHub login of the user who opened the Pull Request.
- owner String
- Owner of the repository. If not provided, the provider's default owner is used.
- state String
- the current Pull Request state - can be "open", "closed" or "merged".
- title String
- The title of the Pull Request.
- updated
At Number - The timestamp of the last Pull Request update.
Package Details
- Repository
- GitHub pulumi/pulumi-github
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
github
Terraform Provider.