auto-assign-action icon indicating copy to clipboard operation
auto-assign-action copied to clipboard

An action which adds reviewers to the pull request when the pull request is opened.

Results 55 auto-assign-action issues
Sort by recently updated
recently updated
newest added

I have the config as presented below. The action is adding the author but does not adds me as a reviewer. ``` addReviewers: true addAssignees: author reviewers: - Power-Maverick numberOfReviewers:...

Hi, @kentaro-m currently we have a problem when reviewer approved the PR & any file changed in PR, reviewer got re-request review (not always happens and I don't know the...

Taking a look at the code, it appears that the owner / author can not be an assignee in conjunction with other assignees. https://github.com/kentaro-m/auto-assign-action/blob/master/src/utils.ts For example: ``` addAssignees: true assignees:...

GH Workflow: PR Opened -> Bot Adds Labels -> Add Reviewers 3rd step is not possible using the data provided when a PR is opened. By using `octokit` to retrieve...

Gretings! I did not understand why would anyone use groups with the current implementation. For example, assume that I am `devA`. ``` # Single list reviewers: - devA - devB...

![image](https://user-images.githubusercontent.com/51280276/111116798-8a787d80-858c-11eb-908e-382fe08c7f64.png)

Given the following workflow: ```yaml name: 'Auto Assign PR Reviewers' on: pull_request jobs: add-reviews: runs-on: ubuntu-latest steps: - uses: kentaro-m/[email protected] with: configuration-path: ".github/auto_assign.yml" repo-token: '${{ secrets.GITHUB_TOKEN }}' ``` And the...

See https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target which explains why this way the action has all the necessary permissions. Fixes https://github.com/kentaro-m/auto-assign-action/issues/29