library
turbot/github
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Update Pull Request

Update a pull request's body, title, and assignees.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run github.pipeline.update_pull_request \
--arg 'repository_owner=<string>' \
--arg 'repository_name=<string>' \
--arg 'pull_request_number=<number>' \
--arg 'pull_request_body=<string>' \
--arg 'pull_request_title=<string>' \
--arg 'assignee_ids=<list(string)>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = github.pipeline.update_pull_request
args = {
repository_owner = <string>
repository_name = <string>
pull_request_number = <number>
pull_request_body = <string>
pull_request_title = <string>
assignee_ids = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.github
YesName of Github connection to use. If not provided, the default Github connection will be used.connection.github.default
repository_owner
string
YesThe organization or user name.-
repository_name
string
YesThe name of the repository.-
pull_request_number
number
YesThe pull request number.-
pull_request_body
string
YesThe contents of the pull request.-
pull_request_title
string
YesThe title of the pull request.-
assignee_ids
list(string)
YesAn array of Node IDs of users for this pull request.-

Outputs

NameDescription
pull_requestPull request details.