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 <noreply@anthropic.com>
This commit is contained in:
Thore Cimbal
2026-07-30 12:00:00 +00:00
co-authored by Claude Sonnet 5
parent 0f1d31021c
commit f2abae85dd
2 changed files with 6 additions and 15 deletions
+6 -14
View File
@@ -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 }}