From ab9d7ba89f72b26d8bd3024bf6a1e6411a8b3c8d Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Thu, 13 Feb 2025 16:07:43 -0500 Subject: [PATCH] Copy labels from issue to pull request --- .github/workflows/copy_labels.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/copy_labels.yml diff --git a/.github/workflows/copy_labels.yml b/.github/workflows/copy_labels.yml new file mode 100644 index 00000000000..8e9061c6655 --- /dev/null +++ b/.github/workflows/copy_labels.yml @@ -0,0 +1,15 @@ +name: Copy labels from issue to pull request + +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 }}