github.onIssueCommentCreated emits issue_comment payloads with action: "created".
automations/github-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 a GitHub issue or pull request comment is created.
github.onIssueCommentCreated emits issue_comment payloads with action: "created".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub comment created", () => {
const event = github.onIssueCommentCreated()
// Send the GitHub issue comment to its owner.
})