https://github.com/toshimaru/auto-author-assign
GitHub Actions: Automatically assign pull request authors.
https://github.com/toshimaru/auto-author-assign
github-actions
Last synced: about 2 months ago
JSON representation
GitHub Actions: Automatically assign pull request authors.
- Host: GitHub
- URL: https://github.com/toshimaru/auto-author-assign
- Owner: toshimaru
- License: mit
- Created: 2020-04-14T05:11:44.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T02:31:09.000Z (about 1 year ago)
- Last Synced: 2025-09-20T12:07:04.142Z (2 months ago)
- Topics: github-actions
- Language: JavaScript
- Homepage: https://github.com/marketplace/actions/auto-author-assign
- Size: 1.4 MB
- Stars: 120
- Watchers: 3
- Forks: 24
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/toshimaru/auto-author-assign/actions/workflows/build.yml)
# auto-author-assign
GitHub Actions: Automatically assign pull request authors.

## Why this action?
In most cases, the pull request author should be assigned as an **assignee** of the pull request.
This action automatically assigns the pull request author as an assignee.
## Usage
```yml
# .github/workflows/auto-author-assign.yml
name: Auto Author Assign
on:
pull_request_target:
types: [ opened, reopened ]
permissions:
pull-requests: write
jobs:
assign-author:
runs-on: ubuntu-latest
steps:
- uses: toshimaru/auto-author-assign@v2.1.1
```
## Use your own token
You can specify your own token.
```yml
jobs:
assign-author:
runs-on: ubuntu-latest
steps:
- uses: toshimaru/auto-author-assign
with:
repo-token: ${{ secrets.YOUR_TOKEN }}
```
If not specified, `GITHUB_TOKEN` will be used by default.
## Enable auto-author-assign for issues
An issue's author can be automatically assigned as an issue assignee.
- Add `issues` to the trigger
- Add `issues: write` to the permissions
```yml
on:
issues:
types: [ opened, reopened ]
pull_request_target:
types: [ opened, reopened ]
permissions:
issues: write
pull-requests: write
jobs:
...
```
## Skip assigning the author
The `auto-author-assign` action skips assigning the author when:
1. Someone is already assigned as an assignee
1. The author is a bot