library
turbot/github
- Add Issue Assignees
- Block User in Organization
- Close Issue
- Close Pull Request
- Create Branch
- Create Issue
- Create Issue Comment
- Create Organization Invitation
- Create Pull Request
- Create Pull Request Comment
- Create Repository
- Delete Branch
- Delete Issue Comment
- Get branch
- Get Current User
- Get Issue by Number
- Get Pull Request by Number
- Get Repository by Full Name
- Get Repository Owner
- Get User by Login
- List Issues
- List Pull Requests
- Remove organization member
- Search Issues
- Search Pull Requests
- Search Repositories
- Test Add Issue Assignees
- Test Branch Operations
- Test Create Issue
- Test Get Current User
- Test Get Repository by Full Name
- Test Get Repository Owner
- Test Get User by Login
- Test List Issues
- Test List Pull Requests
- Test Search Issues
- Test Search Pull Requests
- Test Search Repositories
- Unblock User in Organization
- Update Issue
- Update Issue Comment
- Update Pull Request
Get Involved
Version
Update Issue Comment
Update a comment in an issue.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run github.pipeline.update_issue_comment \ --arg 'repository_owner=<string>' \ --arg 'repository_name=<string>' \ --arg 'issue_comment_id=<string>' \ --arg 'issue_comment=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = github.pipeline.update_issue_comment args = { repository_owner = <string> repository_name = <string> issue_comment_id = <string> issue_comment = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
cred | string | Yes | Name for credentials to use. If not provided, the default credentials will be used. | default |
repository_owner | string | Yes | The organization or user name. | - |
repository_name | string | Yes | The name of the repository. | - |
issue_comment_id | string | Yes | The ID of the IssueComment to modify. | - |
issue_comment | string | Yes | The updated text of the comment. | - |
Outputs
Name | Description |
---|---|
issue_comment | The updated issue comment. |