hanseltimeindustries/Get Files That Changed
Get all of the files changed/modified in a pull request or push's commits.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
- Runtime
- Deprecated runtime
Inputs
| name | description | required | default |
|---|---|---|---|
| token | GitHub token for GitHub API requests. Users shouldn't need to set this themselves. | yes | ${{ github.token }} |
| format | Format of the steps output context. Can be 'space-delimited', 'csv', or 'json'. | yes | space-delimited |
| filter | A csv string of minimatch globs that will filter out the file changes. This is a short cut for returning changed files in a specific folder. | no | — |
Outputs
| name | description |
|---|---|
| all | Array of all changed files. |
| added | Array of added files. |
| modified | Array of modified files. |
| removed | Array of removed files. |
| renamed | Array of renamed files. |
| added_modified | Array of all added and modified files. |
| deleted | Array of deleted files. |