From bf2d58c5c880c5903da572b14b23923c4d0e8f88 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 14:36:06 +0000 Subject: [PATCH 1/3] Initial plan From 14d14e296b7853cdd7ce11980fadb612a9090f7f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 14:37:59 +0000 Subject: [PATCH 2/3] Fix labeler.yml configuration for actions/labeler@v5 compatibility Co-authored-by: professoroakz <6593422+professoroakz@users.noreply.github.com> --- .github/labeler.yml | 62 ++++++++++++++++++++++++++++----------------- 1 file changed, 39 insertions(+), 23 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 66ec1c5..b26e205 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,40 +1,56 @@ # Auto-label pull requests based on changed files +# Configuration for actions/labeler@v5 documentation: - - '**/*.md' - - 'docs/**/*' + - changed-files: + - any-glob-to-any-file: '**/*.md' + - changed-files: + - any-glob-to-any-file: 'docs/**/*' workflows: - - '.github/workflows/**/*' + - changed-files: + - any-glob-to-any-file: '.github/workflows/**/*' ci: - - '.github/workflows/**/*' - - '.github/actions/**/*' + - changed-files: + - any-glob-to-any-file: + - '.github/workflows/**/*' + - '.github/actions/**/*' dependencies: - - 'package.json' - - 'package-lock.json' - - 'Dockerfile' + - changed-files: + - any-glob-to-any-file: + - 'package.json' + - 'package-lock.json' + - 'Dockerfile' scripts: - - 'bin/**/*' - - 'scripts/**/*' + - changed-files: + - any-glob-to-any-file: + - 'bin/**/*' + - 'scripts/**/*' tests: - - 'test/**/*' - - '**/*.test.js' - - '**/*.spec.js' + - changed-files: + - any-glob-to-any-file: + - 'test/**/*' + - '**/*.test.js' + - '**/*.spec.js' configuration: - - '**/.*.yml' - - '**/.*.yaml' - - '**/.*.json' - - '.editorconfig' - - '.gitignore' + - changed-files: + - any-glob-to-any-file: + - '**/.*.yml' + - '**/.*.yaml' + - '**/.*.json' + - '.editorconfig' + - '.gitignore' community: - - 'CODE_OF_CONDUCT.md' - - 'CONTRIBUTING.md' - - 'SECURITY.md' - - 'SUPPORT.md' - - 'LICENSE' + - changed-files: + - any-glob-to-any-file: + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'SECURITY.md' + - 'SUPPORT.md' + - 'LICENSE' From 1b43a4c9de9b2f06f66ac04de5ae1987ad4b19b3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 14:39:17 +0000 Subject: [PATCH 3/3] Consolidate labeler patterns for better consistency and maintainability Co-authored-by: professoroakz <6593422+professoroakz@users.noreply.github.com> --- .github/labeler.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index b26e205..38e9a1e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -3,13 +3,14 @@ documentation: - changed-files: - - any-glob-to-any-file: '**/*.md' - - changed-files: - - any-glob-to-any-file: 'docs/**/*' + - any-glob-to-any-file: + - '**/*.md' + - 'docs/**/*' workflows: - changed-files: - - any-glob-to-any-file: '.github/workflows/**/*' + - any-glob-to-any-file: + - '.github/workflows/**/*' ci: - changed-files: