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