-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create FUNDING.yml * Update task names * Update action.yml * Update README.md * Doc: toshimaru/auto-author-assign@v0.0.1
- Loading branch information
Showing
4 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: toshimaru |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
# auto-author-assign | ||
|
||
GitHub Actions: Assign pull request author automatically. | ||
|
||
## Usage | ||
|
||
```yaml | ||
name: 'Auto Author Assign' | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
add-assignees: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: toshimaru/auto-author-assign@v0.0.1 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name: 'Auto Author Assign' | ||
description: 'Assign author to pull requests when pull requests are opened.' | ||
description: 'Assign author to pull requests when the pull requests are opened.' | ||
author: 'toshimaru' | ||
inputs: | ||
repo-token: | ||
description: 'A token for the repo' | ||
description: 'A token for the repository' | ||
required: true | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
branding: | ||
icon: 'user-plus' | ||
color: 'pink' | ||
color: 'red' |