umani/Changed Files Exporter
Exports the files created, modified or deleted by a PR
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| repo-token | The GITHUB_TOKEN secret | yes | ${{ github.token }} |
| pattern | A regular expression to filter the outputs by. | no | .* |
| pr-number | The pull request number (if absent, the pull request is inferred from the given context). | — | — |
| result-encoding | The encoding for the output values, either 'string' (default) or 'json'. | no | — |
Outputs
| name | description |
|---|---|
| changed | Indicates whether a file has changed (boolean) |
| files_created | The names of the newly created files |
| files_created_count | The number of newly created files |
| files_updated | The names of the updated files |
| files_updated_count | The number of updated files |
| files_deleted | The names of the deleted files |
| files_deleted_count | The number of deleted files |
| total_modified_count | The sum of all `files_*_count` outputs |