diff --git a/scripts/ci/pr_auto_scan.py b/scripts/ci/pr_auto_scan.py index 6bef46da2..69699c7dc 100644 --- a/scripts/ci/pr_auto_scan.py +++ b/scripts/ci/pr_auto_scan.py @@ -75,7 +75,7 @@ def check_required_contexts(token, repo, sha, contexts): for ctx in contexts: state = statuses.get(ctx, "pending") - if state != "success": + if state not in ("success", "skipped"): all_success = False if state == "pending": any_pending = True