From 62eb94c55add151b1eb39259c18664b6505eb77c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Jun 2026 20:49:36 +0000 Subject: [PATCH 1/6] Initial plan From 32497dda459765a5fd2e5a182a28d7d4cd77c0bd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Jun 2026 20:50:31 +0000 Subject: [PATCH 2/6] chore(labeler): add additional auto-label rules for CI, deps, config, i18n, inspector, toolbar, and styling --- .github/labeler.yml | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index 50bc53fc..dd0b8fad 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -27,3 +27,49 @@ Frontend: Theme-Builder: - changed-files: - any-glob-to-any-file: src/Service/ThemeBuilder/** + +CI/CD: + - changed-files: + - any-glob-to-any-file: + - ".github/workflows/**" + - ".github/actions/**" + - ".trunk/**" + +Dependencies: + - changed-files: + - any-glob-to-any-file: + - "composer.json" + - "composer.lock" + - "package.json" + - "package-lock.json" + - "yarn.lock" + - "pnpm-lock.yaml" + +Config: + - changed-files: + - any-glob-to-any-file: + - "src/etc/**" + - "src/**/etc/**" + +Inspector: + - changed-files: + - any-glob-to-any-file: + - "src/view/frontend/web/js/inspector.js" + - "src/Plugin/Block/Adminhtml/System/Config/Form/Field/InspectorHints.php" + +Toolbar: + - changed-files: + - any-glob-to-any-file: + - "src/view/frontend/web/js/toolbar/**" + - "src/view/frontend/web/css/source/_toolbar.css" + +I18n: + - changed-files: + - any-glob-to-any-file: + - "src/i18n/*.csv" + +Styling: + - changed-files: + - any-glob-to-any-file: + - "src/view/frontend/web/css/**" + - "**/*.css" From 4cc224eb1bf5f279687b40dc83f34f218b5c1bcc Mon Sep 17 00:00:00 2001 From: Mathias Elle Date: Tue, 23 Jun 2026 23:04:34 +0200 Subject: [PATCH 3/6] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index dd0b8fad..d9184bcb 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -55,7 +55,7 @@ Inspector: - changed-files: - any-glob-to-any-file: - "src/view/frontend/web/js/inspector.js" - - "src/Plugin/Block/Adminhtml/System/Config/Form/Field/InspectorHints.php" + - "src/Model/TemplateEngine/Decorator/InspectorHints.php" Toolbar: - changed-files: From 22144da7dcb06bb4ee82c5342099f8d37c50a684 Mon Sep 17 00:00:00 2001 From: Mathias Elle Date: Tue, 23 Jun 2026 23:05:23 +0200 Subject: [PATCH 4/6] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .github/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d9184bcb..cc29c8e8 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -61,7 +61,7 @@ Toolbar: - changed-files: - any-glob-to-any-file: - "src/view/frontend/web/js/toolbar/**" - - "src/view/frontend/web/css/source/_toolbar.css" + - "src/view/frontend/web/css/toolbar.css" I18n: - changed-files: From ddfbc65250a2fd3a239da8274b96644004d474d4 Mon Sep 17 00:00:00 2001 From: Mathias Elle Date: Wed, 24 Jun 2026 07:24:58 +0200 Subject: [PATCH 5/6] chore(labeler): update file patterns and enhance dependencies in labeler and trunk configurations --- .github/labeler.yml | 34 +++++++++++++++++----------------- .trunk/trunk.yaml | 10 +++++----- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index cc29c8e8..e3af19d7 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -31,45 +31,45 @@ Theme-Builder: CI/CD: - changed-files: - any-glob-to-any-file: - - ".github/workflows/**" - - ".github/actions/**" - - ".trunk/**" + - .github/workflows/** + - .github/actions/** + - .trunk/** Dependencies: - changed-files: - any-glob-to-any-file: - - "composer.json" - - "composer.lock" - - "package.json" - - "package-lock.json" - - "yarn.lock" - - "pnpm-lock.yaml" + - composer.json + - composer.lock + - package.json + - package-lock.json + - yarn.lock + - pnpm-lock.yaml Config: - changed-files: - any-glob-to-any-file: - - "src/etc/**" - - "src/**/etc/**" + - src/etc/** + - src/**/etc/** Inspector: - changed-files: - any-glob-to-any-file: - - "src/view/frontend/web/js/inspector.js" - - "src/Model/TemplateEngine/Decorator/InspectorHints.php" + - src/view/frontend/web/js/inspector.js + - src/Model/TemplateEngine/Decorator/InspectorHints.php Toolbar: - changed-files: - any-glob-to-any-file: - - "src/view/frontend/web/js/toolbar/**" - - "src/view/frontend/web/css/toolbar.css" + - src/view/frontend/web/js/toolbar/** + - src/view/frontend/web/css/toolbar.css I18n: - changed-files: - any-glob-to-any-file: - - "src/i18n/*.csv" + - src/i18n/*.csv Styling: - changed-files: - any-glob-to-any-file: - - "src/view/frontend/web/css/**" + - src/view/frontend/web/css/** - "**/*.css" diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index 6fd2231e..c27021e6 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -27,19 +27,19 @@ lint: paths: - .ddev/** enabled: - - pinact@4.0.0 + - pinact@4.1.0 - svgo@4.0.1 - taplo@0.10.0 - - checkov@3.3.1 + - checkov@3.3.2 - actionlint@1.7.12 - git-diff-check - hadolint@2.14.0 - - markdownlint@0.48.0 - - oxipng@10.1.0 + - markdownlint@0.49.0 + - oxipng@10.1.1 - prettier@3.8.4 - shellcheck@0.11.0 - shfmt@3.6.0 - - trufflehog@3.92.5 + - trufflehog@3.95.6 - yamllint@1.38.0 actions: disabled: From 6b4ead104c217fb31c976d86e4a5d7aeac70597a Mon Sep 17 00:00:00 2001 From: Mathias Elle Date: Wed, 24 Jun 2026 07:27:47 +0200 Subject: [PATCH 6/6] chore(labeler): add inspector and toolbar file patterns for better labeling --- .github/labeler.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index e3af19d7..3acd3f01 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -54,6 +54,7 @@ Config: Inspector: - changed-files: - any-glob-to-any-file: + - src/view/frontend/web/js/inspector/** - src/view/frontend/web/js/inspector.js - src/Model/TemplateEngine/Decorator/InspectorHints.php @@ -61,6 +62,7 @@ Toolbar: - changed-files: - any-glob-to-any-file: - src/view/frontend/web/js/toolbar/** + - src/view/frontend/web/js/toolbar.js - src/view/frontend/web/css/toolbar.css I18n: