This is a simple program that allows you to leave comments on GitHub issues and pull requests in a very simple manner, optionally also hiding previous comments that match a given regular expression.
ghcomment -owner inkel -repo ghcomment \
-nr 1 \
-token $token \
-body="your comment's body" \
-hide-regexp='^this'The program accepts the following flags:
ownerandrepoare the owner and repository name.nris the pull request or issue number.tokenis your GitHub access token.bodyshould be your comment’s Markdown body; you can add a@character and use a file path instead.hide-regexpis an optional regular expression used to match any previous comments and hide them.
MIT. See [LICENSE](LICENSE).