Replace all GitHub API and gh CLI dependencies with Forgejo SDK via pkg/forge. The bash dispatcher burned a week of credit in a day due to bugs — the jobrunner now talks directly to Forgejo. - Add forge client methods: CreateIssueComment, CloseIssue, MergePullRequest, SetPRDraft, ListPRReviews, GetCombinedStatus, DismissReview - Create ForgejoSource implementing JobSource (epic polling, checklist parsing, commit status via combined status API) - Rewrite all 5 handlers to accept *forge.Client instead of shelling out - Replace ResolveThreadsHandler with DismissReviewsHandler (Forgejo has no thread resolution API — dismiss stale REQUEST_CHANGES reviews instead) - Delete pkg/jobrunner/github/ and handlers/exec.go entirely - Update internal/core-ide/headless.go to wire Forgejo source and handlers - All 33 tests pass with mock Forgejo HTTP servers Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
package handlers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/host-uk/core/pkg/forge"
|
|
"github.com/host-uk/core/pkg/jobrunner"
|
|
)
|
|
|
|
// SendFixCommandHandler posts a comment on a PR asking for conflict or
|
|
// review fixes.
|
|
type SendFixCommandHandler struct {
|
|
forge *forge.Client
|
|
}
|
|
|
|
// NewSendFixCommandHandler creates a handler that posts fix commands.
|
|
func NewSendFixCommandHandler(f *forge.Client) *SendFixCommandHandler {
|
|
return &SendFixCommandHandler{forge: f}
|
|
}
|
|
|
|
// Name returns the handler identifier.
|
|
func (h *SendFixCommandHandler) Name() string {
|
|
return "send_fix_command"
|
|
}
|
|
|
|
// Match returns true when the PR is open and either has merge conflicts or
|
|
// has unresolved threads with failing checks.
|
|
func (h *SendFixCommandHandler) Match(signal *jobrunner.PipelineSignal) bool {
|
|
if signal.PRState != "OPEN" {
|
|
return false
|
|
}
|
|
if signal.Mergeable == "CONFLICTING" {
|
|
return true
|
|
}
|
|
if signal.HasUnresolvedThreads() && signal.CheckStatus == "FAILURE" {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Execute posts a comment on the PR asking for a fix.
|
|
func (h *SendFixCommandHandler) Execute(ctx context.Context, signal *jobrunner.PipelineSignal) (*jobrunner.ActionResult, error) {
|
|
start := time.Now()
|
|
|
|
var message string
|
|
if signal.Mergeable == "CONFLICTING" {
|
|
message = "Can you fix the merge conflict?"
|
|
} else {
|
|
message = "Can you fix the code reviews?"
|
|
}
|
|
|
|
err := h.forge.CreateIssueComment(
|
|
signal.RepoOwner, signal.RepoName,
|
|
int64(signal.PRNumber), message,
|
|
)
|
|
|
|
result := &jobrunner.ActionResult{
|
|
Action: "send_fix_command",
|
|
RepoOwner: signal.RepoOwner,
|
|
RepoName: signal.RepoName,
|
|
PRNumber: signal.PRNumber,
|
|
Success: err == nil,
|
|
Timestamp: time.Now(),
|
|
Duration: time.Since(start),
|
|
}
|
|
|
|
if err != nil {
|
|
result.Error = fmt.Sprintf("post comment failed: %v", err)
|
|
}
|
|
|
|
return result, nil
|
|
}
|