From 0634a79f2420a8d5cbe7760ca95ec923312e78f6 Mon Sep 17 00:00:00 2001 From: grandeljay Date: Sun, 12 Mar 2023 11:15:49 +0100 Subject: [PATCH] chore(workflow): add auto-assign configuration According to kentaro-m/auto-assign-action#55 the auto-assign workflow needs a configuration file to run. --- .github/auto-assign-configuration.yml | 6 ++++++ .github/auto_assign.yml | 17 ----------------- .github/workflows/auto-assign.yml | 12 ++++++++++++ 3 files changed, 18 insertions(+), 17 deletions(-) create mode 100644 .github/auto-assign-configuration.yml delete mode 100644 .github/auto_assign.yml create mode 100644 .github/workflows/auto-assign.yml 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"