Skip to content

Commit

Permalink
Updated input name
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Aug 23, 2023
1 parent 16066fc commit bf5082f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ inputs:
description: "Skip the initial fetch to improve performance for shallow repositories. **NOTE**: This could lead to errors with missing history and the intended use is limited to when you've fetched the history necessary to perform the diff."
required: false
default: "false"
fetch_submodule_history:
fetch_additional_submodule_history:
description: "Fetch additional history for submodules."
required: false
default: "false"
Expand Down
4 changes: 2 additions & 2 deletions src/changedFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const getRenamedFiles = async ({
}))
) {
core.warning(
`Set 'fetch_submodule_history: true' to fetch additional submodule history for: ${submodulePath}`
`Set 'fetch_additional_submodule_history: true' to fetch additional submodule history for: ${submodulePath}`
)
diff = '..'
}
Expand Down Expand Up @@ -161,7 +161,7 @@ export const getAllDiffFiles = async ({
}))
) {
core.warning(
`Set 'fetch_submodule_history: true' to fetch additional submodule history for: ${submodulePath}`
`Set 'fetch_additional_submodule_history: true' to fetch additional submodule history for: ${submodulePath}`
)
diff = '..'
}
Expand Down
2 changes: 1 addition & 1 deletion src/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export const getInputs = (): Inputs => {
required: false
})
const fetchSubmoduleHistory = core.getBooleanInput(
'fetch_submodule_history',
'fetch_additional_submodule_history',
{
required: false
}
Expand Down

0 comments on commit bf5082f

Please sign in to comment.