MCPcopy Create free account
hub / github.com/FastLED/FastLED / reply

Function reply

ci/tools/coderabbit_addressor.py:192–203  ·  view source on GitHub ↗
(pr: int, comment_id: int, message: str)

Source from the content-addressed store, hash-verified

190
191
192def reply(pr: int, comment_id: int, message: str) -> None:
193 repo = _repo_slug()
194 _run_gh(
195 [
196 "api",
197 "--method",
198 "POST",
199 f"repos/{repo}/pulls/{pr}/comments/{comment_id}/replies",
200 "-f",
201 f"body={message}",
202 ]
203 )
204
205
206def check(pr: int) -> int:

Callers 1

mainFunction · 0.85

Calls 2

_repo_slugFunction · 0.85
_run_ghFunction · 0.85

Tested by

no test coverage detected