Skip to content
at-sign

GitHub Action

AutoAssignReviewerTeam

v0.5 Latest version

AutoAssignReviewerTeam

at-sign

AutoAssignReviewerTeam

Run script that auto-assigns a team as a PR reviewer

Installation

Copy and paste the following snippet into your .yml file.

              

- name: AutoAssignReviewerTeam

uses: nikosmoum/auto-assign-reviewer-team@v0.5

Learn more about this action in nikosmoum/auto-assign-reviewer-team

Choose a version

auto-assign-reviewer-team

Github Action that auto-assigs a team as a PR reviewer

Usage example

Create a workflow file (e.g. .github/workflows/auto-assign.yml) that contains a step that uses: nikosmoum/auto-assign-reviewer-team@v0.5. Example:

name: AutoAssignReviewer

on:
  pull_request:
    types: [opened, ready_for_review]

jobs:
  auto-assign-reviewer:
    runs-on: ubuntu-latest
    steps:
      - name: Run assignment of reviewer team
        uses: nikosmoum/auto-assign-reviewer-team@v0.5
        with:
          githubToken: ${{ secrets.GITHUB_TOKEN }}
          teamName: 'my-team-name'