mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-23 05:02:15 -05:00
Cleanup git pull data
This commit is contained in:
parent
b616dafd41
commit
27dd6e71a0
1 changed files with 11 additions and 7 deletions
|
@ -982,14 +982,16 @@ BuildFileList()
|
||||||
################
|
################
|
||||||
# print header #
|
# print header #
|
||||||
################
|
################
|
||||||
echo ""
|
if [[ "$ACTIONS_RUNNER_DEBUG" != "false" ]]; then
|
||||||
echo "----------------------------------------------"
|
echo ""
|
||||||
echo "Pulling in code history and branches..."
|
echo "----------------------------------------------"
|
||||||
|
echo "Pulling in code history and branches..."
|
||||||
|
fi
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
# Switch codebase back to master to get a list of all files changed #
|
# Switch codebase back to master to get a list of all files changed #
|
||||||
#####################################################################
|
#####################################################################
|
||||||
SWITCH_CMD=$(cd "$GITHUB_WORKSPACE" || exit; git pull; git checkout master 2>&1)
|
SWITCH_CMD=$(cd "$GITHUB_WORKSPACE" || exit; git pull --quiet; git checkout master 2>&1)
|
||||||
|
|
||||||
#######################
|
#######################
|
||||||
# Load the error code #
|
# Load the error code #
|
||||||
|
@ -1009,9 +1011,11 @@ BuildFileList()
|
||||||
################
|
################
|
||||||
# print header #
|
# print header #
|
||||||
################
|
################
|
||||||
echo ""
|
if [[ "$ACTIONS_RUNNER_DEBUG" != "false" ]]; then
|
||||||
echo "----------------------------------------------"
|
echo ""
|
||||||
echo "Generating Diff with:[git diff --name-only 'master..$GITHUB_SHA' --diff-filter=d]"
|
echo "----------------------------------------------"
|
||||||
|
echo "Generating Diff with:[git diff --name-only 'master..$GITHUB_SHA' --diff-filter=d]"
|
||||||
|
fi
|
||||||
|
|
||||||
################################################
|
################################################
|
||||||
# Get the Array of files changed in the comits #
|
# Get the Array of files changed in the comits #
|
||||||
|
|
Loading…
Reference in a new issue