From 5ea55672cd8620c8c9c9f28b2a1b83175481a0e3 Mon Sep 17 00:00:00 2001 From: Raghav Kaul <8695110+raghavkaul@users.noreply.github.com> Date: Thu, 1 Jun 2023 14:55:17 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20GitLab:=20enable=20more=20checks=20?= =?UTF-8?q?in=20cron=20(#3097)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Enable checks * Binary-Artifacts * Code-Review * License * Vulnerabilities Signed-off-by: Raghav Kaul * Enable more checks * CII Best Practices * Fuzzing * Maintained * Packaging * Pinned-Dependencies * Signed-Releases Signed-off-by: Raghav Kaul * update repo name Signed-off-by: Raghav Kaul --------- Signed-off-by: Raghav Kaul Signed-off-by: Allen Shearin --- .../data/gitlab-projects-selected.csv | 2 +- cron/internal/worker/main.go | 34 +++++++++---------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/cron/internal/data/gitlab-projects-selected.csv b/cron/internal/data/gitlab-projects-selected.csv index dd22ca97358..0fa9195a82e 100644 --- a/cron/internal/data/gitlab-projects-selected.csv +++ b/cron/internal/data/gitlab-projects-selected.csv @@ -4,7 +4,7 @@ https://gitlab.com/gitlab-org/gitlab, https://gitlab.com/CalcProgrammer1/OpenRGB, https://gitlab.com/gitlab-org/gitlab-runner, https://gitlab.com/fdroid/fdroidclient, -https://gitlab.com/bramw/baserow, +https://gitlab.com/baserow/baserow, https://gitlab.com/AuroraOSS/AuroraStore, https://gitlab.com/graphviz/graphviz, https://gitlab.com/pgjones/quart, diff --git a/cron/internal/worker/main.go b/cron/internal/worker/main.go index 39e4f0445e1..5eccc1a25a4 100644 --- a/cron/internal/worker/main.go +++ b/cron/internal/worker/main.go @@ -56,25 +56,25 @@ var ( // TODO, should probably be its own config/env var, as the checks we want to run // per-platform will differ based on API cost/efficiency/implementation. gitlabDisabledChecks = []string{ - "Binary-Artifacts", + // "Binary-Artifacts", "Branch-Protection", - "CII-Best-Practices", - "CI-Tests", - "Code-Review", - "Contributors", - "Dangerous-Workflow", - "Dependency-Update-Tool", - "Fuzzing", - "License", - "Maintained", - "Packaging", - "Pinned-Dependencies", - "SAST", + // "CII-Best-Practices", + "CI-Tests", // globally disabled + // "Code-Review", + "Contributors", // globally disabled + "Dangerous-Workflow", // not supported on gitlab + "Dependency-Update-Tool", // globally disabled, not supported on gitlab + // "Fuzzing", + // "License", + // "Maintained", + // "Packaging", + // "Pinned-Dependencies", + "SAST", // not supported on gitlab // "Security-Policy", - "Signed-Releases", - "Token-Permissions", - "Vulnerabilities", - "Webhooks", + // "Signed-Releases", + "Token-Permissions", /// not supported on gitlab + // "Vulnerabilities", + "Webhooks", // globally disabled } )