Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/michinaoshimizu/assign-author
- Owner: MichinaoShimizu
- Created: 2022-07-17T11:20:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-17T13:29:57.000Z (over 2 years ago)
- Last Synced: 2024-10-06T03:05:24.610Z (3 months ago)
- Topics: actions
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 authoron:
pull_request:
types:
- opened
- reopened
issues:
types:
- opened
- reopenedjobs:
assign:
runs-on: ubuntu-20.04
timeout-minutes: 3
steps:
- uses: MichinaoShimizu/assign-author@v1
```