library
turbot/github
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.github | Yes | Name of Github connection to use. If not provided, the default Github connection will be used. | connection.github.default |
repository_owner | string | Yes | The organization or user name. | - |
repository_name | string | Yes | The name of the repository. | - |
pull_request_number | number | Yes | The pull request number. | - |
pull_request_body | string | Yes | The contents of the pull request. | - |
pull_request_title | string | Yes | The title of the pull request. | - |
assignee_ids | list(string) | Yes | An array of Node IDs of users for this pull request. | - |
Outputs
Name | Description |
---|---|
pull_request | Pull request details. |