From 43864ddbb8b90a98ea33c2218d8bd5484e6e37ea Mon Sep 17 00:00:00 2001 From: Raphael Odini Date: Wed, 17 Jan 2024 09:29:27 +0100 Subject: [PATCH] =?UTF-8?q?Tech=20:=20workflow=20Github=20pour=20auto-assi?= =?UTF-8?q?gner=20l'auteur=20=C3=A0=20sa=20PR=20(#1042)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pr-auto-author-assign.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pr-auto-author-assign.yml diff --git a/.github/workflows/pr-auto-author-assign.yml b/.github/workflows/pr-auto-author-assign.yml new file mode 100644 index 000000000..c3f0d77ad --- /dev/null +++ b/.github/workflows/pr-auto-author-assign.yml @@ -0,0 +1,14 @@ +name: PR Auto Author Assign + +on: + pull_request_target: + types: [opened, reopened] + +permissions: + pull-requests: write + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v2.0.1