From a6f7c60916bac6ac08cd06fc76edbae824ff3db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20H=C3=B6rtenhuber?= Date: Mon, 4 Mar 2024 09:38:41 +0000 Subject: [PATCH] update ci rules in to current set --- public_html/pipeline_health.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public_html/pipeline_health.php b/public_html/pipeline_health.php index 45a39c5bd9..7a309402a3 100644 --- a/public_html/pipeline_health.php +++ b/public_html/pipeline_health.php @@ -78,8 +78,7 @@ public function __construct($name) { // Names of required CI checks. These are added to whatever already exists. public $required_status_check_contexts = [ - 'Prettier', - 'EditorConfig', + 'pre-commit', 'nf-core', 'Run pipeline with test data', // NOTE - doesn't seem to be any way to get the "available" contexts through GitHub API @@ -93,6 +92,8 @@ public function __construct($name) { 'YAML', 'Markdown', 'Run workflow tests', + 'Prettier', + 'EditorConfig', ]; public $branch_exist_tests = ['master']; public $branches_protection = ['master'];