bd sync: 2025-12-23 20:45:19

This commit is contained in:
Steve Yegge
2025-12-23 20:45:19 -08:00
parent 25fa0e5c25
commit 9c8761abc9
76 changed files with 7818 additions and 6841 deletions

View File

@@ -33,14 +33,6 @@ func (s *SQLiteStorage) GetReadyWork(ctx context.Context, filter types.WorkFilte
if filter.Type != "" {
whereClauses = append(whereClauses, "i.issue_type = ?")
args = append(args, filter.Type)
} else {
// Exclude workflow types from ready work by default (gt-7xtn)
// These are internal workflow items, not work for polecats to claim:
// - merge-request: processed by Refinery
// - gate: async wait conditions
// - molecule: workflow containers
// - message: mail/communication items
whereClauses = append(whereClauses, "i.issue_type NOT IN ('merge-request', 'gate', 'molecule', 'message')")
}
if filter.Priority != nil {