Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/actions-ecosystem/action-add-assignees
👉 GitHub Action to add assignees
https://github.com/actions-ecosystem/action-add-assignees
actions assign github
Last synced: 28 days ago
JSON representation
👉 GitHub Action to add assignees
- Host: GitHub
- URL: https://github.com/actions-ecosystem/action-add-assignees
- Owner: actions-ecosystem
- License: apache-2.0
- Created: 2020-05-10T00:59:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-21T16:30:32.000Z (10 months ago)
- Last Synced: 2024-10-14T13:36:11.735Z (3 months ago)
- Topics: actions, assign, github
- Language: TypeScript
- Homepage: https://github.com/marketplace/actions/actions-ecosystem-action-add-assignees
- Size: 631 KB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Action Add Assignees
[![actions-workflow-test][actions-workflow-test-badge]][actions-workflow-test]
[![release][release-badge]][release]
[![license][license-badge]][license]![screenshot](./docs/assets/screenshot.png)
This is a GitHub Action to add assignees to an issue or a pull request.
It would be more useful to use this with other GitHub Actions' outputs.
## Inputs
| NAME | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
| -------------- | --------------------------------------------------------------------------------------------------- | -------- | -------- | -------------------------- |
| `github_token` | A GitHub token. | `string` | `true` | `N/A` |
| `assignees` | The assignees' name to be added. Must be separated with line breaks if there're multiple assignees. | `string` | `true` | `N/A` |
| `number` | The number of the issue or pull request. | `number` | `false` | `N/A` |
| `repo` | The owner and repository name. e.g.) `Codertocat/Hello-World` | `string` | `false` | `${{ github.repository }}` |## Example
```yaml
name: Auto Assignon:
pull_request:
types:
- opened
- reopenedjobs:
add_assignees:
runs-on: ubuntu-latest
steps:
- uses: actions-ecosystem/action-add-assignees@v1
with:
github_token: ${{ secrets.github_token }}
assignees: ${{ github.actor }}
```## License
Copyright 2020 The Actions Ecosystem Authors.
Action Add Assignees is released under the [Apache License 2.0](./LICENSE).
[actions-workflow-test]: https://github.com/actions-ecosystem/action-add-assignees/actions?query=workflow%3ATest
[actions-workflow-test-badge]: https://img.shields.io/github/workflow/status/actions-ecosystem/action-add-assignees/Test?label=Test&style=for-the-badge&logo=github[release]: https://github.com/actions-ecosystem/action-add-assignees/releases
[release-badge]: https://img.shields.io/github/v/release/actions-ecosystem/action-add-assignees?style=for-the-badge&logo=github[license]: LICENSE
[license-badge]: https://img.shields.io/github/license/actions-ecosystem/action-add-assignees?style=for-the-badge