Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/michinaoshimizu/assign-author

Github Action that sets author to assignee when assignee is not set in issue or pull_request.
https://github.com/michinaoshimizu/assign-author

actions

Last synced: about 1 month ago
JSON representation

Github Action that sets author to assignee when assignee is not set in issue or pull_request.

Awesome Lists containing this project

README

        

# Assign Author

Github Action that sets author to assignee when assignee is not set in issue or pull_request.

## Usage

```yaml
uses: MichinaoShimizu/assign-author@v1
```

## Example

```yaml
name: Assign author

on:
pull_request:
types:
- opened
- reopened
issues:
types:
- opened
- reopened

jobs:
assign:
runs-on: ubuntu-20.04
timeout-minutes: 3
steps:
- uses: MichinaoShimizu/assign-author@v1
```