From 99c991755a84a374a14dfe2dedf3e73a11e8a072 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri, 6 Sep 2024 20:19:56 -0500
Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20No=20"base"=20needed=20for=20min?=
 =?UTF-8?q?imal=20config=20(2)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Followup to 90e5826256
---
 .github/workflows/update-base-configs.yml | 27 -----------------------
 Makefile                                  |  7 ------
 2 files changed, 34 deletions(-)
 delete mode 100644 .github/workflows/update-base-configs.yml

diff --git a/.github/workflows/update-base-configs.yml b/.github/workflows/update-base-configs.yml
deleted file mode 100644
index c27e946171..0000000000
--- a/.github/workflows/update-base-configs.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# update-base-configs.yml
-# Generate new base config files if needed
-#
-
-name: Update Base Configs
-
-on:
-  schedule:
-    - cron: '0 */6 * * *'
-
-jobs:
-  bump_date:
-    name: Update Base Configs
-    if: github.repository == 'MarlinFirmware/Marlin'
-
-    runs-on: ubuntu-latest
-
-    steps:
-
-    - name: Checkout bugfix-2.1.x
-      uses: actions/checkout@v4
-      with:
-        ref: bugfix-2.1.x
-
-    - name: Update Base Configs
-      run: make base-configs
diff --git a/Makefile b/Makefile
index accebff395..02722b9ca2 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,6 @@ help:
 	@echo "make marlin                    : Build marlin for the configured board"
 	@echo "make format-pins -j            : Reformat all pins files (-j for parallel execution)"
 	@echo "make validate-pins -j          : Validate all pins files, fails if any require reformatting"
-	@echo "make base-configs              : Regenerate the base configs in Marlin/src/inc"
 	@echo "make tests-single-ci           : Run a single test from inside the CI"
 	@echo "make tests-single-local        : Run a single test locally"
 	@echo "make tests-single-local-docker : Run a single test locally, using docker"
@@ -103,9 +102,3 @@ format-pins: $(PINS)
 validate-pins: format-pins
 	@echo "Validating pins files"
 	@git diff --exit-code || (git status && echo "\nError: Pins files are not formatted correctly. Run \"make format-pins\" to fix.\n" && exit 1)
-
-base-configs:
-	@echo "Generating base configs"
-	@python $(SCRIPTS_DIR)/makeBaseConfigs.py 2>/dev/null \
-	  && git add Marlin/src/inc/BaseConfiguration.h Marlin/src/inc/BaseConfiguration_adv.h \
-	  && git commit -m "[cron] Update Base Configurations"