diff --git a/.github/auto-assign-configuration.yml b/.github/auto-assign-configuration.yml new file mode 100644 index 00000000..c2924b6a --- /dev/null +++ b/.github/auto-assign-configuration.yml @@ -0,0 +1,6 @@ +addReviewers: true +addAssignees: author +reviewers: + - "grandeljay" +skipKeywords: + - wip diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml deleted file mode 100644 index 93470705..00000000 --- a/.github/auto_assign.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: "Auto Assign" -on: - pull_request: - types: [opened, ready_for_review] - -jobs: - add-reviews: - runs-on: ubuntu-latest - steps: - - uses: kentaro-m/auto-assign-action@v1.2.4 - with: - addReviewers: true - addAssignees: author - reviewers: - - "grandeljay" - skipKeywords: - - wip diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 00000000..e7898434 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,12 @@ +name: "Auto Assign" +on: + pull_request: + types: [opened, ready_for_review] + +jobs: + add-reviews: + runs-on: ubuntu-latest + steps: + - uses: kentaro-m/auto-assign-action@v1.2.4 + with: + configuration-path: ".github/auto-assign-configuration.yml"