From 706d45213d4da4bc1c7c846eddd0c9699895de87 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 04:40:17 +0000 Subject: [PATCH 1/3] Initial plan From 1a3bcf66409e5c6cad5b2132374882bcd9bcd845 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 04:42:24 +0000 Subject: [PATCH 2/3] feat: add PR labeler workflow for plugin labels Co-authored-by: sapphi-red <49056869+sapphi-red@users.noreply.github.com> --- .github/pr-labeler.yml | 11 +++++++++++ .github/workflows/pr-labeler.yml | 19 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .github/pr-labeler.yml create mode 100644 .github/workflows/pr-labeler.yml diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml new file mode 100644 index 0000000..b6cd644 --- /dev/null +++ b/.github/pr-labeler.yml @@ -0,0 +1,11 @@ +'plugin: babel': + - changed-files: + - any-glob-to-any-file: 'packages/babel/**' + +'plugin: emotion': + - changed-files: + - any-glob-to-any-file: 'packages/emotion/**' + +'plugin: jsx-remove-attributes': + - changed-files: + - any-glob-to-any-file: 'packages/jsx-remove-attributes/**' diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 0000000..7cea90c --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,19 @@ +name: PR Labeler + +on: + pull_request: + types: [opened, synchronize, reopened] + +permissions: + contents: read + pull-requests: write + +jobs: + label: + runs-on: ubuntu-slim + steps: + - uses: actions/labeler@v5 + with: + configuration-path: .github/pr-labeler.yml + sync-labels: false + repo-token: ${{ github.token }} From 5d48324f52383db7a2b3cf6104d074199683a744 Mon Sep 17 00:00:00 2001 From: sapphi-red <49056869+sapphi-red@users.noreply.github.com> Date: Wed, 18 Mar 2026 14:05:16 +0900 Subject: [PATCH 3/3] chore: format --- .github/pr-labeler.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml index b6cd644..149f125 100644 --- a/.github/pr-labeler.yml +++ b/.github/pr-labeler.yml @@ -1,11 +1,11 @@ 'plugin: babel': - changed-files: - - any-glob-to-any-file: 'packages/babel/**' + - any-glob-to-any-file: 'packages/babel/**' 'plugin: emotion': - changed-files: - - any-glob-to-any-file: 'packages/emotion/**' + - any-glob-to-any-file: 'packages/emotion/**' 'plugin: jsx-remove-attributes': - changed-files: - - any-glob-to-any-file: 'packages/jsx-remove-attributes/**' + - any-glob-to-any-file: 'packages/jsx-remove-attributes/**'