(token: string, webhookSecret: string)
| 55 | private webhookSecret: string; |
| 56 | |
| 57 | constructor(token: string, webhookSecret: string) { |
| 58 | this.octokit = new Octokit({ auth: token }); |
| 59 | this.webhookSecret = webhookSecret; |
| 60 | console.log('[GitHub] Adapter initialized with secret:', webhookSecret.substring(0, 8) + '...'); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Send a message to a GitHub issue or PR |
nothing calls this directly
no outgoing calls
no test coverage detected