We've been doing manually for too long ;). The reason why we're assigning the author is it makes it easy to filter pull requests by assignee on our kanban; it isn't so easy (actually, might be impossible) to filter by author.
17 lines
321 B
YAML
17 lines
321 B
YAML
name: Assignment management
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
assign-author:
|
|
name: Auto-assign pull request author
|
|
if: github.repository_owner == 'consul'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: toshimaru/auto-author-assign@v1.4.0
|