We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something worth exploring, GitHub Probot exists and is also based on Octokit.
It cuts out all the GitHub authentication flows boilerplate, easy to write/maintain/test/extend, supports TypeScript out of the box, etc.
import { Probot } from "probot"; import { handle } from "./rocketbot"; export = (app: Probot) => { app.on("issue_comment.created", async (context) => { const updatedComment: IssueComment | undefined = handle(context) if (updatedComment) { await context.octokit.issues.updateComment(updatedComment); } }); }
The text was updated successfully, but these errors were encountered:
Oh cool, that sounds like we could remove a whole bunch of code - do you have experience with it?
Sorry, something went wrong.
No branches or pull requests
Something worth exploring, GitHub Probot exists and is also based on Octokit.
It cuts out all the GitHub authentication flows boilerplate, easy to write/maintain/test/extend, supports TypeScript out of the box, etc.
The text was updated successfully, but these errors were encountered: