-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from luisgj/chore/readme
Update README.md
- Loading branch information
Showing
1 changed file
with
28 additions
and
2 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 |
---|---|---|
@@ -1,2 +1,28 @@ | ||
# group-pull-requests | ||
A Javascript Github Action that fetches open pull requests with a specific tag and returns the grouped source branches. | ||
# Group Pull Requests Github Action | ||
|
||
A Javascript Github Action that fetches open pull requests with a specific label and returns the grouped source branches. | ||
|
||
## Inputs | ||
|
||
### `detect-label` | ||
|
||
**Required** The label that all Pull Requests must contain to be grouped. | ||
|
||
### `repo-token` | ||
|
||
**Required** The token secret stored in `secrets.GITHUB_TOKEN` | ||
|
||
## Outputs | ||
|
||
### `branches` | ||
|
||
Grouped list of open branches with the same tag | ||
|
||
## Example usage | ||
|
||
```yaml | ||
uses: luisgj/[email protected] | ||
with: | ||
detect-label: 'stage-ready' | ||
repo-token: '${{ secrets.GITHUB_TOKEN }}' | ||
``` |