From f57e009e52dbec96f64b5f0c0252f3434d08ce5b Mon Sep 17 00:00:00 2001 From: Pedro Henrique Penna Date: Thu, 23 Apr 2026 19:31:04 -0700 Subject: [PATCH] fix: remove duplicate repository_dispatch key in build.yml The workflow had two repository_dispatch keys in the 'on' trigger block, which is invalid YAML (duplicate mapping keys). This caused GitHub Actions to fail to parse the workflow, resulting in 0 jobs running. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5a2838f..a92a225 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,6 @@ on: types: - gcc-stage1-release workflow_dispatch: - repository_dispatch: - types: - - gcc-stage1-release concurrency: group: build-toolchain-gcc