mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-22 09:19:15 +00:00
25 lines
564 B
TypeScript
25 lines
564 B
TypeScript
|
import {Inputs} from './inputs'
|
||
|
|
||
|
export const UNSUPPORTED_REST_API_INPUTS: (keyof Inputs)[] = [
|
||
|
'sha',
|
||
|
'baseSha',
|
||
|
'since',
|
||
|
'until',
|
||
|
'path',
|
||
|
'quotepath',
|
||
|
'diffRelative',
|
||
|
'sinceLastRemoteCommit',
|
||
|
'recoverDeletedFiles',
|
||
|
'recoverDeletedFilesToDestination',
|
||
|
'recoverFiles',
|
||
|
'recoverFilesSeparator',
|
||
|
'recoverFilesIgnore',
|
||
|
'recoverFilesIgnoreSeparator',
|
||
|
'includeAllOldNewRenamedFiles',
|
||
|
'oldNewSeparator',
|
||
|
'oldNewFilesSeparator',
|
||
|
'skipInitialFetch',
|
||
|
'fetchAdditionalSubmoduleHistory',
|
||
|
'dirNamesDeletedFilesIncludeOnlyDeletedDirs'
|
||
|
]
|