Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 620 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 620 Bytes

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/[email protected]. 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/[email protected]
        with:
          githubToken: ${{ secrets.GITHUB_TOKEN }}
          teamName: 'my-team-name'