mirror of
https://github.com/dorny/paths-filter.git
synced 2025-06-08 10:01:34 +00:00
* Add support for specification of change type (add,modified,delete) * Use NULL as separator in git-diff command output * Improve PR test workflow * Fix the workflow file
13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
export interface File {
|
|
filename: string
|
|
status: ChangeStatus
|
|
}
|
|
|
|
export enum ChangeStatus {
|
|
Added = 'added',
|
|
Copied = 'copied',
|
|
Deleted = 'deleted',
|
|
Modified = 'modified',
|
|
Renamed = 'renamed',
|
|
Unmerged = 'unmerged'
|
|
}
|