diff --git a/.github/workflows/pullrequest-opened.yml b/.github/workflows/pullrequest-opened.yml new file mode 100644 index 00000000..3876aa37 --- /dev/null +++ b/.github/workflows/pullrequest-opened.yml @@ -0,0 +1,13 @@ +name: Pull Request Opened +on: + pull_request_target: + types: [opened] + +jobs: + assign: + runs-on: ubuntu-latest + steps: + - name: Assign Pull Request to its Author + uses: technote-space/assign-author@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}