From f2abae85dd1a5358a46460ff64b78e4a16c7840c Mon Sep 17 00:00:00 2001 From: Thore Cimbal Date: Thu, 30 Jul 2026 12:00:00 +0000 Subject: [PATCH] ci: remove unused workflow_call trigger (Gitea Actions bug go-gitea/gitea#33238) push + workflow_call in the same on: block doesn't reliably fire push events on Gitea Actions 1.27 (reproducible upstream, closed as "not planned" - https://github.com/go-gitea/gitea/issues/33238). Nothing in this repo invokes build-and-test.yaml via workflow_call anymore after the workflow cleanup, so removing the trigger is a safe, targeted fix rather than a workaround. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/README-ci.md | 1 - .github/workflows/build-and-test.yaml | 20 ++++++-------------- 2 files changed, 6 insertions(+), 15 deletions(-) delete mode 100644 .github/workflows/README-ci.md diff --git a/.github/workflows/README-ci.md b/.github/workflows/README-ci.md deleted file mode 100644 index bf9f5296f..000000000 --- a/.github/workflows/README-ci.md +++ /dev/null @@ -1 +0,0 @@ -# CI trigger test 2026-07-30T17:32:34Z diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 93cddf408..32cda80fc 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -17,20 +17,12 @@ on: types: [checks_requested] push: branches: [main] - - # support triggering from other workflows - workflow_call: - inputs: - skip: - type: boolean - required: false - default: false - description: "A boolean to skip the playwright check itself while still creating the passing check. Useful when only running in Merge Queues." - - matrix-js-sdk-sha: - type: string - required: false - description: "The Git SHA of matrix-js-sdk to build against. By default, will use a matching branch name if it exists, or develop." + # workflow_call entfernt: nichts in diesem Repo ruft build-and-test.yaml per + # workflow_call auf (verifiziert), und die Kombination push+workflow_call im + # selben on:-Block triggert auf Gitea Actions 1.27 nicht zuverlaessig bei push + # (bekannter, als "not planned" geschlossener Gitea-Bug #33238). inputs.skip/ + # inputs.matrix-js-sdk-sha bleiben unten referenziert, werten fuer alle + # verbleibenden Trigger-Typen einfach zu null/leer aus (unveraendertes Verhalten). concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}