From 9da5f589db4c4ffba3d702567e6a18f4a270af65 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 6 Nov 2024 16:01:36 +0100 Subject: [PATCH] [FEAT] auto add assignee --- .github/workflows/assign-pr-author.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/assign-pr-author.yml diff --git a/.github/workflows/assign-pr-author.yml b/.github/workflows/assign-pr-author.yml new file mode 100644 index 0000000..907e54d --- /dev/null +++ b/.github/workflows/assign-pr-author.yml @@ -0,0 +1,15 @@ +--- +name: "Assign PR Author as Assignee" + +"on": + pull_request: + types: [opened, ready_for_review, reopened] + +jobs: + assign-pr-author-as-assignee: + runs-on: ubuntu-latest + steps: + - name: "Assign Author as Assignee" + uses: itsOliverBott/assign-pr-author-as-assignee@latest + with: + token: ${{ secrets.GITHUB_TOKEN }}