From 722d15933ffcb8be6fc7ef450013e3176a4fc8b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Gro=C3=9Fmann?= Date: Fri, 7 Aug 2026 19:13:20 +0200 Subject: [PATCH] ci: drop build inputs mbt no longer declares Every pull_request run fails at startup ("This run likely failed because of a workflow file issue") without executing a single step. The caller passes `incremental` and `base_sha` to mvslovers/mbt's reusable build.yml, which since the v2 host-build migration declares only `cc370_ref`. Passing undefined inputs to a reusable workflow is a startup failure, not a build error, so nothing in the log points at the project. This file has been unchanged since the v1-era mbt migration; lua370's own move to mbt v2 updated project.toml and the Makefile but not the workflow caller. ufsd, ftpd, httpd and mvsmf all call the same reusable workflow with no `with:` block -- this brings lua370 in line. The trigger stays pull_request-only, unchanged. --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18cc9a0..e761669 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,6 +6,3 @@ on: jobs: build: uses: mvslovers/mbt/.github/workflows/build.yml@main - with: - incremental: ${{ github.event_name == 'pull_request' }} - base_sha: ${{ github.event.pull_request.base.sha || '' }}