chore: updated list of unsupported inputs when using REST API (#1611)

Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
Tonye Jack 2023-09-24 18:10:27 -06:00 committed by GitHub
parent 914e0223cf
commit 428220b7f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 5 deletions

5
dist/index.js generated vendored
View File

@ -1559,12 +1559,12 @@ const getInputs = () => {
oldNewFilesSeparator, oldNewFilesSeparator,
skipInitialFetch, skipInitialFetch,
fetchSubmoduleHistory, fetchSubmoduleHistory,
dirNamesDeletedFilesIncludeOnlyDeletedDirs,
// End Not Supported via REST API // End Not Supported via REST API
dirNames, dirNames,
dirNamesExcludeCurrentDir, dirNamesExcludeCurrentDir,
dirNamesIncludeFiles, dirNamesIncludeFiles,
dirNamesIncludeFilesSeparator, dirNamesIncludeFilesSeparator,
dirNamesDeletedFilesIncludeOnlyDeletedDirs,
json, json,
escapeJson, escapeJson,
writeOutputFiles, writeOutputFiles,
@ -1794,7 +1794,8 @@ function run() {
'recoverFilesIgnore', 'recoverFilesIgnore',
'includeAllOldNewRenamedFiles', 'includeAllOldNewRenamedFiles',
'skipInitialFetch', 'skipInitialFetch',
'fetchSubmoduleHistory' 'fetchSubmoduleHistory',
'dirNamesDeletedFilesIncludeOnlyDeletedDirs'
]; ];
for (const input of unsupportedInputs) { for (const input of unsupportedInputs) {
if (inputs[input]) { if (inputs[input]) {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -256,12 +256,12 @@ export const getInputs = (): Inputs => {
oldNewFilesSeparator, oldNewFilesSeparator,
skipInitialFetch, skipInitialFetch,
fetchSubmoduleHistory, fetchSubmoduleHistory,
dirNamesDeletedFilesIncludeOnlyDeletedDirs,
// End Not Supported via REST API // End Not Supported via REST API
dirNames, dirNames,
dirNamesExcludeCurrentDir, dirNamesExcludeCurrentDir,
dirNamesIncludeFiles, dirNamesIncludeFiles,
dirNamesIncludeFilesSeparator, dirNamesIncludeFilesSeparator,
dirNamesDeletedFilesIncludeOnlyDeletedDirs,
json, json,
escapeJson, escapeJson,
writeOutputFiles, writeOutputFiles,

View File

@ -258,7 +258,8 @@ export async function run(): Promise<void> {
'recoverFilesIgnore', 'recoverFilesIgnore',
'includeAllOldNewRenamedFiles', 'includeAllOldNewRenamedFiles',
'skipInitialFetch', 'skipInitialFetch',
'fetchSubmoduleHistory' 'fetchSubmoduleHistory',
'dirNamesDeletedFilesIncludeOnlyDeletedDirs'
] ]
for (const input of unsupportedInputs) { for (const input of unsupportedInputs) {