vanons/Get Merged Pull Requests
Compare two tags and retrieve all the pull requests merged between them.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| github_token | The GitHub token to use. | yes | — |
| repo | The repository to use. Defaults to current repository. Expected format: `owner/repo`. | no | — |
| current_tag | The current tag to use. Defaults to current/latest tag. | no | — |
| previous_tag | The previous tag to use. Defaults to one tag before the current tag. | no | — |
| commit_is_pull_request_regex | The regex to use to determine if a commit is a pull request merge commit. This is checked against a commit's title. Default regex: `^Merge pull request.*`. | no | — |
| apply_commit_is_pull_request_regex | Whether to apply `commit_is_pull_request_regex` to the commits. | no | false |
| pull_request_regex | The regex to use if you want to filter the pull requests. This is checked against a pull request's title. Example regex: `^\[Feat].*`. | no | — |
| commit_limit | Limit the number of commits to retrieve. | no | 250 |
Outputs
| name | description |
|---|---|
| pull_requests_file | The path to the JSON file containing the pull requests merged between the two tags. |