github.onPullRequestReviewCommentEdited emits inline review comments with action: "edited".
automations/github-review-comment-edited.automation.ts
changes when GitHub supplies it. Requires Pull requests read permission.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run when an inline GitHub pull request review comment is edited.
github.onPullRequestReviewCommentEdited emits inline review comments with action: "edited".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub review comment edited", () => {
const event = github.onPullRequestReviewCommentEdited()
// Send the GitHub review comment to the pull request author.
})
changes when GitHub supplies it. Requires Pull requests read permission.