diff --git a/.github/auto_assignee.yml b/.github/auto_assignee.yml new file mode 100644 index 00000000..aab29cd9 --- /dev/null +++ b/.github/auto_assignee.yml @@ -0,0 +1,3 @@ +addAssignees: true +assignees: + - ckenst \ No newline at end of file diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 00000000..00991613 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,14 @@ +name: Auto Assign PRs + +on: + pull_request: + types: [opened, reopened, synchronize, ready_for_review] + +jobs: + add_assignees: + runs-on: ubuntu-latest + steps: + - uses: kentaro-m/auto-assign-action@v2.0.0 + with: + configuration-path: .github/auto_assignee.yml + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file