Skip to content

Commit

Permalink
chore: update warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Aug 26, 2023
1 parent d01e38a commit 4d289a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/changedFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ export const getRenamedFiles = async ({
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) {
message = `To fetch additional submodule history for: ${submodulePath} you can increase history depth using 'fetch_depth' input`
}
core.warning(message)
core.info(message)
diff = '..'
}

Expand Down

0 comments on commit 4d289a3

Please sign in to comment.