Files
nairobi/.github/workflows/auto-author-assign.yml
Javi Martín 4c25b20891 Assign pull request author automatically
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.
2022-07-07 14:43:04 +02:00

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