diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 0000000..9492d0e --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,16 @@ +name: Auto Assign + +on: + pull_request: + types: + - opened + - reopened + +jobs: + add_assignees: + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-add-assignees@v1 + with: + github_token: ${{ secrets.github_token }} + assignees: ${{ github.actor }} \ No newline at end of file