summaryrefslogtreecommitdiff
path: root/.github/workflows/autoassign.yml
blob: d9420699e2dfe26a646354c687abb3190948c42f (plain)
1
2
3
4
5
6
7
8
9
10
11
---
name: AutoAssigner
on: [pull_request]
jobs:
  assignAuthor:
    runs-on: ubuntu-latest
    steps:
      - uses: samspills/assign-pr-to-author@v1.0
        if: github.event_name == 'pull_request' && github.event.action == 'opened'
        with:
          repo-token: '${{ secrets.GITHUB_TOKEN }}'