summaryrefslogtreecommitdiff
path: root/.github/workflows/auto-author-assign.yml
blob: 0bfe972c08e5331ba0183836df45489330b1e76a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: "PR Triage"
on:
  pull_request_target:
    types: [opened, reopened, ready_for_review, locked]

permissions:
  pull-requests: write

jobs:
  # https://github.com/marketplace/actions/auto-author-assign
  assign-author:
    runs-on: ubuntu-latest
    steps:
      - name: "Assign Author to PR"
        uses: toshimaru/auto-author-assign@v1.6.2
        with:
          repo-token: ${{ secrets.GITHUB_TOKEN }}