github.onPullRequestReviewCommentDeleted emits inline review comments with action: "deleted".
automations/github-review-comment-deleted.automation.ts
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 deleted.
github.onPullRequestReviewCommentDeleted emits inline review comments with action: "deleted".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub review comment deleted", () => {
const event = github.onPullRequestReviewCommentDeleted()
// Send the GitHub review comment to the pull request author.
})