github_repository_pull_request

This resource allows you to create and manage PullRequests for repositories within your GitHub organization or personal account.

Example Usage

resource "github_repository_pull_request" "example" {
    base_repository = "example-repository"
    base_ref        = "main"
    head_ref        = "feature-branch"
    title           = "My newest feature"
    body            = "This will change everything"
}

Argument Reference

Attributes Reference