From a29be7003e2fff6d9bcd71d0f43464b5ff22bee9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 16:28:03 +0000 Subject: [PATCH 1/2] Initial plan From 61b826b14719a512af9d67f06d7dd30b798458d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 16:29:51 +0000 Subject: [PATCH 2/2] Fix labeler.yml configuration format for actions/labeler@v5 compatibility Co-authored-by: professoroakz <6593422+professoroakz@users.noreply.github.com> --- .github/labeler.yml | 39 ++++++++++++++++----------------------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 66ec1c5..c12f301 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,40 +1,33 @@ # Auto-label pull requests based on changed files documentation: - - '**/*.md' - - 'docs/**/*' + - changed-files: + - any-glob-to-any-file: ['**/*.md', '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']