()
| 150 | }; |
| 151 | /** Clear the native status (best-effort). */ |
| 152 | const clearStatus = async (): Promise<void> => { |
| 153 | if (!statusMode) return; |
| 154 | await setStatus(""); |
| 155 | }; |
| 156 | /** Whether this run has posted any visible reply yet (drives status clear). */ |
| 157 | let postedReply = false; |
| 158 | const onFirstReply = async (): Promise<void> => { |
no test coverage detected
searching dependent graphs…