From af31f5dfd479dacdc89ad338673c0a7dc7edd480 Mon Sep 17 00:00:00 2001 From: Herbert Roth Date: Wed, 5 Aug 2026 16:46:12 +0200 Subject: [PATCH] [Symfony 8] Add central Symfony 8 compatibility check Subscribes this repo to the reusable Symfony 8 compatibility check in pimcore/workflows-collection-public, which scans the PHP sources on every PR for Symfony APIs removed in 8.x. The rule set is maintained centrally and grows with each migration fix sweep. No source changes: this repo has no usages of the currently checked APIs (the two #[TaggedIterator] forms, removed in Symfony 8.0). Co-Authored-By: Claude --- .github/workflows/symfony8-compat.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/symfony8-compat.yaml diff --git a/.github/workflows/symfony8-compat.yaml b/.github/workflows/symfony8-compat.yaml new file mode 100644 index 0000000..fe037bb --- /dev/null +++ b/.github/workflows/symfony8-compat.yaml @@ -0,0 +1,10 @@ +name: "Symfony 8 compatibility" + +on: + pull_request: + types: [ opened, synchronize, reopened ] + workflow_dispatch: + +jobs: + symfony8-compat: + uses: pimcore/workflows-collection-public/.github/workflows/reusable-symfony8-compat.yaml@main