getshogun/Git matching commits
Returns a string with commits in the current repository with messages matching a regular expression"
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| path | The path to the repository | no | . |
| start_tag_pattern | A regex to match the starting tag | no | v[0-9]*.[0-9]*.[0-9] |
| end_tag_pattern | A regex to match the ending tag (defaults to HEAD) | no | "" |
| commit_message_pattern | A regex to match commit messages | yes | — |
| commit_type | The type of commit to match - merge|all | no | merge |
| github_labels | Comma separated List of GitHub Pull Request labels to match | no | "" |
| github_repository | <organization>/<repository> to search for Pull Requests | no | "" |
| github_token | GitHub token to use for API calls | no | "" |
| release_notes_file | GitHub release notes file | no | "" |
Outputs
| name | description |
|---|---|
| commits | Returns a space separated list of found commitSHA values |
| count | Returns the number of commits found |
| first_commit | Returns the first commitSHA found |
| last_commit | Returns the last commitSHA found |