croemheld/git-diff-action
Determine the files and their type that changed between two branches.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| base | The base branch to compare against | yes | main |
| comp | The feature branch to show the changes in | yes | — |
| glob | The files to match from the diff | yes | * |
| type | The type of the change to search | yes | A|C|D|M|R|T|U|X|B |
Outputs
| name | description |
|---|---|
| count | The number of matches for the specified input |
| added_count | The number of files that were added |
| added_files | The files that were added |
| copied_count | The number of files that were copied |
| copied_files | The files that were copied |
| deleted_count | The number of files that were deleted |
| deleted_files | The files that were deleted |
| modified_count | The number of files that were modified |
| modified_files | The files that were modified |
| renamed_count | The number of files that were renamed |
| renamed_files | The files that were renamed |
| type_changed_count | The number of files that changed their type |
| type_changed_files | The files that changed their type |
| unmerged_count | The number of files that were unmerged |
| unmerged_files | The files that were unmerged |
| unknown_count | The number of files that were unknown |
| unknown_files | The files that were unknown |
| broken_count | The number of files that were broken |
| broken_files | The files that were broken |