Update action.yml

This commit is contained in:
Tonye Jack 2021-03-05 06:51:02 -05:00 committed by GitHub
parent f27a974eb0
commit fa35dfda3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,27 +58,17 @@ runs:
echo "Getting head sha..." echo "Getting head sha..."
HEAD_SHA=$(git rev-parse ${TARGET_BRANCH} || true) HEAD_SHA=$(git rev-parse ${TARGET_BRANCH} || true)
read -a ADDED_FILES <<< "$(git diff --diff-filter=A --name-only ${HEAD_SHA} || true)"
read -a COPIED_FILES <<< "$(git diff --diff-filter=C --name-only ${HEAD_SHA} || true)"
read -a DELETED_FILES <<< "$(git diff --diff-filter=D --name-only ${HEAD_SHA} || true)"
read -a MODIFIED_FILES <<< "$(git diff --diff-filter=M --name-only ${HEAD_SHA} || true)"
read -a RENAMED_FILES <<< "$(git diff --diff-filter=R --name-only ${HEAD_SHA} || true)"
read -a CHANGED_FILES <<< "$(git diff --diff-filter=T --name-only ${HEAD_SHA} || true)"
read -a UNMERGED_FILES <<< "$(git diff --diff-filter=U --name-only ${HEAD_SHA} || true)"
read -a UNKNOWN_FILES <<< "$(git diff --diff-filter=X --name-only ${HEAD_SHA} || true)"
read -a ALL_CHANGED_FILES <<< "$(git diff --diff-filter='*' --name-only ${HEAD_SHA} || true)"
echo "Getting diff..." echo "Getting diff..."
echo "::set-output name=added_files::${{ toJSON($ADDED_FILES) }}" echo "::set-output name=added_files::${{ $(git diff --diff-filter=A --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=copied_files::${{ toJSON($COPIED_FILES) }}" echo "::set-output name=copied_files::${{ $(git diff --diff-filter=C --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=deleted_files::${{ toJSON($DELETED_FILES) }}" echo "::set-output name=deleted_files::${{ $(git diff --diff-filter=D --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=modified_files::${{ toJSON($MODIFIED_FILES) }}" echo "::set-output name=modified_files::${{ $(git diff --diff-filter=M --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=renamed_files::${{ toJSON($RENAMED_FILES) }}" echo "::set-output name=renamed_files::${{ $(git diff --diff-filter=R --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=changed_files::${{ toJSON($CHANGED_FILES) }}" echo "::set-output name=changed_files::${{ $(git diff --diff-filter=T --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=unmerged_files::${{ toJSON($UNMERGED_FILES) }}" echo "::set-output name=unmerged_files::${{ $(git diff --diff-filter=U --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=unknown_files::${{ toJSON($UNKNOWN_FILES) }}" echo "::set-output name=unknown_files::${{ $(git diff --diff-filter=X --name-only ${HEAD_SHA} || true) }}"
echo "::set-output name=all_changed_files::${{ toJSON($ALL_CHANGED_FILES) }}" echo "::set-output name=all_changed_files::${{ $(git diff --diff-filter='*' --name-only ${HEAD_SHA} || true) }}"
shell: bash shell: bash
branding: branding: