github.onIssueCommentEdited emits issue_comment payloads with action: "edited".
automations/github-comment-edited.automation.ts
changes.body.from when GitHub supplies the previous body. Requires Issues 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 a GitHub issue or pull request comment is edited.
github.onIssueCommentEdited emits issue_comment payloads with action: "edited".
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("GitHub comment edited", () => {
const event = github.onIssueCommentEdited()
// Send the GitHub issue comment to its owner.
})
changes.body.from when GitHub supplies the previous body. Requires Issues read permission.