chore: update warning message (#1500)

Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
Tonye Jack 2023-08-26 14:08:40 -06:00 committed by GitHub
parent d01e38ae60
commit 2f8b80270f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

4
dist/index.js generated vendored
View File

@ -82,11 +82,11 @@ const getRenamedFiles = ({ inputs, workingDirectory, hasSubmodule, diffResult, s
sha2: submoduleShaResult.currentSha, sha2: submoduleShaResult.currentSha,
diff diff
}))) { }))) {
let message = `Set 'fetch_additional_submodule_history: true' to fetch additional submodule history for: ${submodulePath}`; let message = `Unable to use three dot diff for: ${submodulePath} submodule. Falling back to two dot diff. You can set 'fetch_additional_submodule_history: true' to fetch additional submodule history in order to use three dot diff`;
if (inputs.fetchSubmoduleHistory) { if (inputs.fetchSubmoduleHistory) {
message = `To fetch additional submodule history for: ${submodulePath} you can increase history depth using 'fetch_depth' input`; message = `To fetch additional submodule history for: ${submodulePath} you can increase history depth using 'fetch_depth' input`;
} }
core.warning(message); core.info(message);
diff = '..'; diff = '..';
} }
const submoduleRenamedFiles = yield (0, utils_1.gitRenamedFiles)({ const submoduleRenamedFiles = yield (0, utils_1.gitRenamedFiles)({

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -65,11 +65,11 @@ export const getRenamedFiles = async ({
diff diff
})) }))
) { ) {
let message = `Set 'fetch_additional_submodule_history: true' to fetch additional submodule history for: ${submodulePath}` let message = `Unable to use three dot diff for: ${submodulePath} submodule. Falling back to two dot diff. You can set 'fetch_additional_submodule_history: true' to fetch additional submodule history in order to use three dot diff`
if (inputs.fetchSubmoduleHistory) { if (inputs.fetchSubmoduleHistory) {
message = `To fetch additional submodule history for: ${submodulePath} you can increase history depth using 'fetch_depth' input` message = `To fetch additional submodule history for: ${submodulePath} you can increase history depth using 'fetch_depth' input`
} }
core.warning(message) core.info(message)
diff = '..' diff = '..'
} }