Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions internal/vcs/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ func (g *GitHubProvider) GetCIStatus(ctx context.Context, prNumber int, repoPath
failedIDs := make(map[string]bool)

for _, c := range checks {
if strings.Contains(strings.ToLower(c.Name), "approval") {
Comment thread
JulianSarkinovic marked this conversation as resolved.
Outdated
continue
}
state := strings.ToUpper(c.State)
switch {
case state == "PENDING" || state == "QUEUED" || state == "IN_PROGRESS":
Expand Down
Loading