auto-assign-reviewer-by-issuer

A GitHub Action to automatically assigns reviewer by issuer

MIT License

Stars
2
Committers
2

Auto Assign Reviewer By Issuer

Automatically assigns reviewers based on pull request issuer

Configuration

create configuration file

.github/reviewers.yml

---
# issuer: reviewer
shufo:
  - shufo2
# you can set multiple reviewers
smith:
  - user1
  - user2
# you can use regexp to match issuer
john.*:
  - foo
  - bar
# fallback
.*:
  - foo

create action file

.github/workflows/auto-assign.yml

name: "Auto Assign"
on:
  pull_request:
    types: [opened]

jobs:
  assign:
    runs-on: ubuntu-latest
    steps:
    - uses: shufo/[email protected]
      with:
        config: '.github/reviewers.yml'
        token: ${{ secrets.GITHUB_TOKEN }}

Example