From c4f611400a16cea106383af098fce6c156ffb12e Mon Sep 17 00:00:00 2001 From: Robert Wiesner Date: Mon, 20 Jul 2020 09:45:27 +0200 Subject: [PATCH 1/3] Update action.yml --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index cb07b4de..4e90855c 100644 --- a/action.yml +++ b/action.yml @@ -17,6 +17,9 @@ inputs: include-draft: description: 'If set to true, DRAFT PRs will also be covered (default=false)' required: false + skip-with-manual-reviewers: + description: 'If the given nubmer of reviewers is already assigned, auto assign will be skipped' + required: false runs: using: 'node12' From 73b93b20751996096824d6236e7e4290105efbdb Mon Sep 17 00:00:00 2001 From: Robert Wiesner Date: Mon, 20 Jul 2020 09:46:05 +0200 Subject: [PATCH 2/3] Update self.yml --- self.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/self.yml b/self.yml index 9b21b09d..7a1a1cf1 100644 --- a/self.yml +++ b/self.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/auto-assign-review-teams@v0.0.6 + - uses: actions/auto-assign-review-teams@v1.0.1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} persons: "rowi1de" From 0cd3028ad1cecb4b03d4c709883b1a256c063590 Mon Sep 17 00:00:00 2001 From: Robert Wiesner Date: Mon, 20 Jul 2020 09:46:24 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8dea573..409d7f5d 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,11 @@ jobs: runs-on: ubuntu-latest steps: - name: "Assign Team and Persons" - uses: rowi1de/auto-assign-review-teams@v0.0.6 + uses: rowi1de/auto-assign-review-teams@v1.0.1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} teams: "gitub-org-team" # only works for GitHub Organisation/Teams persons: "rowi1de" # add individual persons here include-draft: false # Draft PRs will be skipped (default: false) skip-with-manual-reviewers: 0 # Skip this action, if the number of reviwers was already assigned (default: 0) -``` \ No newline at end of file +```