actions-marketplace-validations/Repo-List-Generator
Generate repo list for user or organization.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
- Runtime
- Deprecated runtime
Inputs
| name | description | required | default |
|---|---|---|---|
| user | Set up the user name to generate repository list. It can be user or organization. The 'owner/repository' will transform to 'owner'. | no | ${{ github.repository }} |
| max_page | Set up maxPage for request to generate repository list. Default 100 repository per page can be fetched. | no | 10 |
| my_token | Set up the personal access token (PAT). The PAT is used to generate repository list for user or organization. | no | ${{ github.token }} |
| block_list | Set up the block_list for repoList. The repositories in block_list will exclude in repository list. | no | "" |
| allow_empty | Set up whether allow empty repository for repoList. | no | false |
| allow_archived | Set up whether allow archived repository for repoList. | no | true |
Outputs
| name | description |
|---|---|
| repo | Current repository name. |
| repoList | Repository list exclude private and fork. Public(source without private) and no fork. |
| repoList_ALL | Repository list include private and fork. Source(public and private) and fork. |
| repoList_PRIVATE | Repository list include private. Source(public and private) and no fork. |
| repoList_FORK | Repository list include fork. Public(source without private) and fork. |
| privateList | Private repository list. Only private(fork can not be private). |
| forkList | Fork repository list. Only fork(private can not be fork). |
| emptyList | Empty repository list. Default exclude in each list. |
| archivedList | Archived repository list. Default include in each list. |