From bc3cccca08ddb28f4014e41f6f784a3e9f822798 Mon Sep 17 00:00:00 2001 From: berfinyuksel <99557970+berfinyuksel@users.noreply.github.com> Date: Wed, 8 Jul 2026 12:44:04 +0200 Subject: [PATCH 1/5] Rename new-docs.yml to docs.yml --- .github/workflows/docs.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..36032ed --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,32 @@ +name: "Documentation (Reusable)" + +on: + pull_request_target: + branches: + - "[0-9]+.[0-9]+" + - "[0-9]+.x" + - "docs_actions" + paths: + - "doc/**" + - ".github/workflows/new-docs.yml" + - "README.md" + push: + branches: + - "[0-9]+.[0-9]+" + - "[0-9]+.x" + - "docs_actions" + paths: + - "doc/**" + - ".github/workflows/new-docs.yml" + - "README.md" + +permissions: + contents: read + +jobs: + docs: + uses: pimcore/workflows-collection-public/.github/workflows/reusable-docs.yaml@main + with: + docs_path: "doc" + secrets: + DOCS_GENERATOR_ACCESS_TOKEN: ${{ secrets.DOCS_GENERATOR_ACCESS_TOKEN }} From f45614fb88f5cad049fc85910dbd613e7e587819 Mon Sep 17 00:00:00 2001 From: berfinyuksel <99557970+berfinyuksel@users.noreply.github.com> Date: Wed, 8 Jul 2026 12:44:05 +0200 Subject: [PATCH 2/5] Remove new-docs.yml after rename to docs.yml --- .github/workflows/new-docs.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/new-docs.yml diff --git a/.github/workflows/new-docs.yml b/.github/workflows/new-docs.yml deleted file mode 100644 index 36032ed..0000000 --- a/.github/workflows/new-docs.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: "Documentation (Reusable)" - -on: - pull_request_target: - branches: - - "[0-9]+.[0-9]+" - - "[0-9]+.x" - - "docs_actions" - paths: - - "doc/**" - - ".github/workflows/new-docs.yml" - - "README.md" - push: - branches: - - "[0-9]+.[0-9]+" - - "[0-9]+.x" - - "docs_actions" - paths: - - "doc/**" - - ".github/workflows/new-docs.yml" - - "README.md" - -permissions: - contents: read - -jobs: - docs: - uses: pimcore/workflows-collection-public/.github/workflows/reusable-docs.yaml@main - with: - docs_path: "doc" - secrets: - DOCS_GENERATOR_ACCESS_TOKEN: ${{ secrets.DOCS_GENERATOR_ACCESS_TOKEN }} From 2d391d09b76fe81331311a38cb893f43f59cb761 Mon Sep 17 00:00:00 2001 From: berfinyuksel <99557970+berfinyuksel@users.noreply.github.com> Date: Wed, 8 Jul 2026 12:44:07 +0200 Subject: [PATCH 3/5] Rename new-php-cs-fixer.yaml to php-cs-fixer.yaml --- .github/workflows/php-cs-fixer.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/php-cs-fixer.yaml diff --git a/.github/workflows/php-cs-fixer.yaml b/.github/workflows/php-cs-fixer.yaml new file mode 100644 index 0000000..91256e7 --- /dev/null +++ b/.github/workflows/php-cs-fixer.yaml @@ -0,0 +1,23 @@ +name: "PHP-CS-Fixer" + +on: + workflow_dispatch: + push: + branches: + - "[0-9]+.[0-9]+" + - "[0-9]+.x" + - "*_actions" + - "feature-*" + +permissions: + contents: write + +jobs: + php-style: + uses: pimcore/workflows-collection-public/.github/workflows/reusable-php-cs-fixer.yaml@fix-failed-workflow + with: + head_ref: ${{ github.head_ref || github.ref_name }} + repository: ${{ github.repository }} + config_file: ".php-cs-fixer.dist.php" + secrets: + PHP_CS_FIXER_GITHUB_TOKEN: ${{ secrets.PHP_CS_FIXER_GITHUB_TOKEN }} From 8f97fbe6d5bf2f4101a6a340991ef41a03534201 Mon Sep 17 00:00:00 2001 From: berfinyuksel <99557970+berfinyuksel@users.noreply.github.com> Date: Wed, 8 Jul 2026 12:44:08 +0200 Subject: [PATCH 4/5] Remove new-php-cs-fixer.yaml after rename to php-cs-fixer.yaml --- .github/workflows/new-php-cs-fixer.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/new-php-cs-fixer.yaml diff --git a/.github/workflows/new-php-cs-fixer.yaml b/.github/workflows/new-php-cs-fixer.yaml deleted file mode 100644 index 91256e7..0000000 --- a/.github/workflows/new-php-cs-fixer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: "PHP-CS-Fixer" - -on: - workflow_dispatch: - push: - branches: - - "[0-9]+.[0-9]+" - - "[0-9]+.x" - - "*_actions" - - "feature-*" - -permissions: - contents: write - -jobs: - php-style: - uses: pimcore/workflows-collection-public/.github/workflows/reusable-php-cs-fixer.yaml@fix-failed-workflow - with: - head_ref: ${{ github.head_ref || github.ref_name }} - repository: ${{ github.repository }} - config_file: ".php-cs-fixer.dist.php" - secrets: - PHP_CS_FIXER_GITHUB_TOKEN: ${{ secrets.PHP_CS_FIXER_GITHUB_TOKEN }} From f31f5794f6c6228d70fa1f85d980a6363f9a4611 Mon Sep 17 00:00:00 2001 From: berfinyuksel <99557970+berfinyuksel@users.noreply.github.com> Date: Wed, 8 Jul 2026 13:25:43 +0200 Subject: [PATCH 5/5] Update Studio Frontend Build workflow to canonical content --- .github/workflows/studio-frontend-build.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/studio-frontend-build.yaml b/.github/workflows/studio-frontend-build.yaml index 3c39ede..5f69d95 100644 --- a/.github/workflows/studio-frontend-build.yaml +++ b/.github/workflows/studio-frontend-build.yaml @@ -1,5 +1,5 @@ name: "Studio Frontend Build" - + on: push: paths: @@ -8,10 +8,16 @@ on: paths: - "assets/studio/**" workflow_dispatch: - + +concurrency: + group: studio-frontend-build-${{ github.head_ref || github.ref_name }} + cancel-in-progress: true + permissions: contents: write - + jobs: studio-frontend-build: uses: pimcore/workflows-collection-public/.github/workflows/reusable-studio-frontend-build.yaml@main + with: + build-output-path: './public/studio/'