From 8abd10b4f48ef2cef42c5470cd02a632a1254b63 Mon Sep 17 00:00:00 2001 From: irongut Date: Wed, 14 Apr 2021 04:01:46 +0100 Subject: [PATCH] added auto assign PR to author action --- .github/workflows/auto-assign-pr.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/auto-assign-pr.yml diff --git a/.github/workflows/auto-assign-pr.yml b/.github/workflows/auto-assign-pr.yml new file mode 100644 index 0000000..47ad7c2 --- /dev/null +++ b/.github/workflows/auto-assign-pr.yml @@ -0,0 +1,15 @@ +# Assign PR to Author +# https://github.com/samspills/assign-pr-to-author + +name: Auto Assign PR +on: [pull_request] + +jobs: + assignAuthor: + runs-on: ubuntu-latest + steps: + - name: Auto Assign PR + uses: samspills/assign-pr-to-author@v1.0 + if: github.event_name == 'pull_request' && github.event.action == 'opened' + with: + repo-token: '${{ secrets.GITHUB_TOKEN }}'