diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 00000000..991927f4 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,18 @@ +name: Auth Assign + +on: + pull_request: + types: opened + +permissions: + pull-requests: write + repository-projects: read + +jobs: + auto-assign: + runs-on: ubuntu-latest + steps: + - name: Set GitHub assignees + env: + GH_TOKEN: ${{ github.token }} + run: gh pr edit ${{ github.event.number }} --add-assignee ${{ github.actor }} --repo ${{ github.repository }} \ No newline at end of file