ci: remove unused workflow_call trigger (Gitea Actions bug go-gitea/gitea#33238)
Build & Test / Build Element Web (push) Canceled after 0s
Build & Test / Run Tests [Chrome] ${{ fromJSON(needs.build_ew.outputs.runners-matrix) }}/ (push) Canceled after 0s
Build & Test / Run Tests [Dendrite] ${{ fromJSON(needs.build_ew.outputs.runners-matrix) }}/ (push) Canceled after 0s
Build & Test / Run Tests [Firefox] ${{ fromJSON(needs.build_ew.outputs.runners-matrix) }}/ (push) Canceled after 0s
Build & Test / Run Tests [Pinecone] ${{ fromJSON(needs.build_ew.outputs.runners-matrix) }}/ (push) Canceled after 0s
Build & Test / Run Tests [WebKit] ${{ fromJSON(needs.build_ew.outputs.runners-matrix) }}/ (push) Canceled after 0s
Build & Test / Downstream Playwright tests [element-modules] (push) Canceled after 0s
Build & Test / Prepare Element Desktop (push) Canceled after 0s
Build & Test / Desktop Windows (arm64) (push) Canceled after 0s
Build & Test / Desktop Windows (ia32) (push) Canceled after 0s
Build & Test / Desktop Windows (x64) (push) Canceled after 0s
Build & Test / Desktop Linux (amd64, ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'X-Run-All-Tests') }}, static) (push) Canceled after 0s
Build & Test / Desktop Linux (amd64, ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'X-Run-All-Tests') }}, system) (push) Canceled after 0s
Build & Test / Desktop Linux (arm64, ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'X-Run-All-Tests') }}, static) (push) Canceled after 0s
Build & Test / Desktop Linux (arm64, ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'X-Run-All-Tests') }}, system) (push) Canceled after 0s
Build & Test / end-to-end-tests (push) Canceled after 0s

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 19:39:39 +02:00
co-authored by Claude Sonnet 5
parent b24ce732dc
commit 8fb32d9360
2 changed files with 6 additions and 15 deletions
-1
View File
@@ -1 +0,0 @@
# CI trigger test 2026-07-30T17:32:34Z
+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 }}