From a365c9ec24821fca34b5dac47ca64ab2dcae739b Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Tue, 12 May 2026 20:22:45 -0500 Subject: [PATCH] fix: remove v_hidden column, rename gitea-server-setup to .mokogitea-private - Replace excludeByName hack with explicit filterFieldsByName regex in mokowaas-dashboard.json to properly hide Value #VERSION - Update EXCLUDE lists in branch-protection.yml and renovate.yml to reference renamed .mokogitea-private repo Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) --- .mokogitea/branch-protection.yml | 2 +- .mokogitea/renovate.yml | 2 +- monitoring/grafana/mokowaas-dashboard.json | 6 +----- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.mokogitea/branch-protection.yml b/.mokogitea/branch-protection.yml index 35afa23..5372dda 100644 --- a/.mokogitea/branch-protection.yml +++ b/.mokogitea/branch-protection.yml @@ -62,7 +62,7 @@ jobs: API="${GITEA_URL}/api/v1" # Platform/standards/infra repos to exclude - EXCLUDE="gitea-org-config org-profile gitea-private gitea-server-setup MokoStandards MokoStandards-API MokoTesting" + EXCLUDE="gitea-org-config org-profile gitea-private .mokogitea-private MokoStandards MokoStandards-API MokoTesting" EXCLUDE="$EXCLUDE MokoStandards-Template-Client MokoStandards-Template-Dolibarr MokoStandards-Template-Generic MokoStandards-Template-Joomla MokoDoliProjTemplate" if [ -n "${{ inputs.repos }}" ]; then diff --git a/.mokogitea/renovate.yml b/.mokogitea/renovate.yml index dad4bd2..5181ff6 100644 --- a/.mokogitea/renovate.yml +++ b/.mokogitea/renovate.yml @@ -61,7 +61,7 @@ jobs: run: | API="${GITEA_URL}/api/v1" - EXCLUDE="gitea-org-config org-profile gitea-private gitea-server-setup MokoStandards MokoStandards-API MokoTesting" + EXCLUDE="gitea-org-config org-profile gitea-private .mokogitea-private MokoStandards MokoStandards-API MokoTesting" EXCLUDE="$EXCLUDE MokoStandards-Template-Client MokoStandards-Template-Dolibarr MokoStandards-Template-Generic MokoStandards-Template-Joomla MokoDoliProjTemplate" if [ -n "${{ inputs.repos }}" ]; then diff --git a/monitoring/grafana/mokowaas-dashboard.json b/monitoring/grafana/mokowaas-dashboard.json index d6a26c5..908fd73 100644 --- a/monitoring/grafana/mokowaas-dashboard.json +++ b/monitoring/grafana/mokowaas-dashboard.json @@ -255,22 +255,18 @@ ], "transformations": [ { "id": "joinByField", "options": { "byField": "site", "mode": "outer" } }, - { "id": "filterFieldsByName", "options": { "include": { "pattern": "^(site_url|version|Value #).*" } } }, + { "id": "filterFieldsByName", "options": { "include": { "pattern": "^(site_url|version|Value #(SYSTEM|EXTUPDATES|TOTAL|ENABLED|DISABLED))$" } } }, { "id": "organize", "options": { "renameByName": { "site_url": "Site", "version": "Version", - "Value #VERSION": "v_hidden", "Value #SYSTEM": "System", "Value #EXTUPDATES": "Ext Updates", "Value #TOTAL": "Total", "Value #ENABLED": "Enabled", "Value #DISABLED": "Disabled" - }, - "excludeByName": { - "v_hidden": true } } },