From 892e34b1f82db28ce8c4bad138d9fc628fdee81e Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 4 Feb 2026 14:37:35 +0900 Subject: [PATCH] Add automation to copy labels from issue when PR is opened https://github.com/marketplace/actions/copy-issue-labels --- .github/workflows/pull-request-copy-labels.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/pull-request-copy-labels.yml diff --git a/.github/workflows/pull-request-copy-labels.yml b/.github/workflows/pull-request-copy-labels.yml new file mode 100644 index 0000000000..b1309b29c5 --- /dev/null +++ b/.github/workflows/pull-request-copy-labels.yml @@ -0,0 +1,13 @@ +on: + pull_request: + types: [opened] + +jobs: + copy-labels: + runs-on: ubuntu-latest + name: Copy labels from linked issues + steps: + - name: copy-labels + uses: michalvankodev/copy-issue-labels@v1.3.0 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }}